Added the capability to select from various template types when creating a new view template. eric7

Fri, 27 Dec 2024 14:17:37 +0100

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Fri, 27 Dec 2024 14:17:37 +0100
branch
eric7
changeset 202
b06794ae2a92
parent 201
9407d05d4109
child 203
07abb6af9048

Added the capability to select from various template types when creating a new view template.

ChangeLog file | annotate | diff | comparison | revisions
PluginProjectDjango.py file | annotate | diff | comparison | revisions
PluginProjectDjango.zip 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	Thu Dec 26 14:24:34 2024 +0100
+++ b/ChangeLog	Fri Dec 27 14:17:37 2024 +0100
@@ -1,5 +1,9 @@
 ChangeLog
 ---------
+Version 10.4.0
+- added capability to select from various template types when creating a
+  new view template
+
 Version 10.3.3
 - bug fixes
 
--- a/PluginProjectDjango.py	Thu Dec 26 14:24:34 2024 +0100
+++ b/PluginProjectDjango.py	Fri Dec 27 14:17:37 2024 +0100
@@ -30,7 +30,7 @@
     "author": "Detlev Offenbach <detlev@die-offenbachs.de>",
     "autoactivate": True,
     "deactivateable": True,
-    "version": "10.3.3",
+    "version": "10.4.0",
     "className": "ProjectDjangoPlugin",
     "packageName": "ProjectDjango",
     "shortDescription": "Project support for Django projects.",
Binary file PluginProjectDjango.zip has changed
--- a/ProjectDjango/Project.py	Thu Dec 26 14:24:34 2024 +0100
+++ b/ProjectDjango/Project.py	Fri Dec 27 14:17:37 2024 +0100
@@ -33,6 +33,7 @@
 from eric7.EricGui.EricAction import EricAction
 from eric7.EricWidgets import EricFileDialog, EricMessageBox
 from eric7.EricWidgets.EricApplication import ericApp
+from eric7.EricWidgets.EricComboSelectionDialog import EricComboSelectionDialog
 
 try:
     from eric7.SystemUtilities.OSUtilities import isWindowsPlatform
@@ -1263,7 +1264,7 @@
         )
 
         if not fname:
-            # user aborted or didn't enter a filename
+            # user aborted or did not enter a filename
             return
 
         ext = QFileInfo(fname).suffix()
@@ -1284,38 +1285,89 @@
                 # user selected to not overwrite
                 return
 
-        try:
-            with open(fname, "w") as f:
-                f.write("<!DOCTYPE html>")
-                f.write("<html>\n")
-                f.write("  <head>\n")
-                f.write('    <meta content="" />\n')
-                f.write("    <title></title>\n")
-                f.write('    <link rel="stylesheet" type="text/css" href="style.css"/>')
-                f.write("    <!--[if lte IE 7]>")
-                f.write('      <link rel="stylesheet" type="text/css" href="ie.css"/>')
-                f.write("    <![endif]-->")
-                f.write("  </head>\n")
-                f.write("\n")
-                f.write('  <body  class="bodyclass">\n')
-                f.write('    <div id="container">')
-                f.write("    </div>")
-                f.write("  </body>\n")
-                f.close()
-                f.write("</html>\n")
-        except OSError as e:
-            EricMessageBox.critical(
-                self.__ui,
-                self.tr("New Form"),
-                self.tr(
-                    "<p>The new form file <b>{0}</b> could not be"
-                    " created.<br> Problem: {1}</p>"
-                ).format(fname, str(e)),
-            )
-            return
-
-        self.__ericProject.appendFile(fname)
-        self.__formsBrowser.sourceFile.emit(fname)
+        templateTypes = [
+            (self.tr("Base Template"), "base"),
+            (self.tr("Extending Template"), "extend"),
+            (self.tr("Standalone Template"), "standalone"),
+            (self.tr("Empty Template"), "empty"),
+        ]
+        dlg = EricComboSelectionDialog(
+            templateTypes,
+            title=self.tr("New Form"),
+            message=self.tr("Select a template type:"),
+            parent=self.__ui,
+        )
+        if dlg.exec() == QDialog.DialogCode.Accepted:
+            selectedType = dlg.getSelection()[1]  # only the type is needed
+
+            try:
+                with open(fname, "w") as f:
+                    if selectedType == "base":
+                        f.write(
+                            """{% load static %}
+
+<!DOCTYPE html>
+<html>
+<head>
+  <title>{% block title %}{% endblock %}</title>
+  <link href="{% static "css/style.css" %}" rel="stylesheet" type="text/css" />
+</head>
+
+<body class="bodyclass">
+  <div id="content">
+    {% block content %}
+    {% endblock %}
+  </div>
+  <div id="sidebar">
+  </div>
+</body>
+</html>
+"""
+                        )
+
+                    elif selectedType == "extend":
+                        f.write(
+                            """{% extends "base.html" %}
+
+{% block title %}{% endblock %}
+
+{% block content %}
+{% endblock %}
+"""
+                        )
+
+                    elif selectedType == "standalone":
+                        f.write(
+                            """<!DOCTYPE html>
+<html>
+<head>
+  <meta content="" />
+  <title></title>
+  <link href="style.css" rel="stylesheet" type="text/css" />
+</head>
+
+<body class="bodyclass">
+  <div id="content">
+  </div>
+</body>
+</html>
+"""
+                        )
+                    elif selectedType == "empty":
+                        f.write("\n")
+            except OSError as e:
+                EricMessageBox.critical(
+                    self.__ui,
+                    self.tr("New Form"),
+                    self.tr(
+                        "<p>The new form file <b>{0}</b> could not be"
+                        " created.<br> Problem: {1}</p>"
+                    ).format(fname, str(e)),
+                )
+                return
+
+            self.__ericProject.appendFile(fname)
+            self.__formsBrowser.sourceFile.emit(fname)
 
     ##################################################################
     ## slots below implement general functionality
Binary file ProjectDjango/i18n/django_de.qm has changed
--- a/ProjectDjango/i18n/django_de.ts	Thu Dec 26 14:24:34 2024 +0100
+++ b/ProjectDjango/i18n/django_de.ts	Fri Dec 27 14:17:37 2024 +0100
@@ -1,2028 +1,2054 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!DOCTYPE TS>
 <TS version="2.1" language="de_DE">
-  <context>
+<context>
     <name>DjangoCheckOptionsDialog</name>
     <message>
-      <location filename="../DjangoCheckOptionsDialog.ui" line="0" />
-      <source>Check Options</source>
-      <translation>Check Optionen</translation>
+        <location filename="../DjangoCheckOptionsDialog.ui" line="0"/>
+        <source>Check Options</source>
+        <translation>Check Optionen</translation>
     </message>
     <message>
-      <location filename="../DjangoCheckOptionsDialog.ui" line="0" />
-      <source>Select to enable checks for deployment mode</source>
-      <translation>Auswählen, um Tests für den Deployment Modus zu aktivieren</translation>
+        <location filename="../DjangoCheckOptionsDialog.ui" line="0"/>
+        <source>Select to enable checks for deployment mode</source>
+        <translation>Auswählen, um Tests für den Deployment Modus zu aktivieren</translation>
     </message>
     <message>
-      <location filename="../DjangoCheckOptionsDialog.ui" line="0" />
-      <source>Deployment Mode</source>
-      <translation>Deployment Modus</translation>
+        <location filename="../DjangoCheckOptionsDialog.ui" line="0"/>
+        <source>Deployment Mode</source>
+        <translation>Deployment Modus</translation>
     </message>
     <message>
-      <location filename="../DjangoCheckOptionsDialog.ui" line="0" />
-      <source>Select type of checks (leave unselected for all checks):</source>
-      <translation>Testtypen auswählen (keine Auswahl entspricht allen):</translation>
+        <location filename="../DjangoCheckOptionsDialog.ui" line="0"/>
+        <source>Select type of checks (leave unselected for all checks):</source>
+        <translation>Testtypen auswählen (keine Auswahl entspricht allen):</translation>
     </message>
     <message>
-      <location filename="../DjangoCheckOptionsDialog.ui" line="0" />
-      <source>Enter the list of applications separated by spaces (leave empty for all apps):</source>
-      <translation>Gib die Liste der Anwendungen durch Leerzeichen getrennt ein (leer lassen, um alle zu prüfen):</translation>
+        <location filename="../DjangoCheckOptionsDialog.ui" line="0"/>
+        <source>Enter the list of applications separated by spaces (leave empty for all apps):</source>
+        <translation>Gib die Liste der Anwendungen durch Leerzeichen getrennt ein (leer lassen, um alle zu prüfen):</translation>
     </message>
     <message>
-      <location filename="../DjangoCheckOptionsDialog.ui" line="0" />
-      <source>Settings module for deployment mode</source>
-      <translation>Settings Modul für Deployment Modus</translation>
+        <location filename="../DjangoCheckOptionsDialog.ui" line="0"/>
+        <source>Settings module for deployment mode</source>
+        <translation>Settings Modul für Deployment Modus</translation>
     </message>
     <message>
-      <location filename="../DjangoCheckOptionsDialog.ui" line="0" />
-      <source>Enter the module name of the deployment settings</source>
-      <translation>Gib den Modulnamen mit den Deploymentsettings ein</translation>
+        <location filename="../DjangoCheckOptionsDialog.ui" line="0"/>
+        <source>Enter the module name of the deployment settings</source>
+        <translation>Gib den Modulnamen mit den Deploymentsettings ein</translation>
     </message>
     <message>
-      <location filename="../DjangoCheckOptionsDialog.ui" line="0" />
-      <source>Press to select the settings module file via a file selection dialog</source>
-      <translation>Drücken, um die Datei des Settingsmoduls mittels Dateiauswhldialog zu wählen</translation>
+        <location filename="../DjangoCheckOptionsDialog.ui" line="0"/>
+        <source>Press to select the settings module file via a file selection dialog</source>
+        <translation>Drücken, um die Datei des Settingsmoduls mittels Dateiauswhldialog zu wählen</translation>
     </message>
     <message>
-      <location filename="../DjangoCheckOptionsDialog.py" line="89" />
-      <source>Select settings file</source>
-      <translation>Settingsdatei auswählen</translation>
+        <location filename="../DjangoCheckOptionsDialog.py" line="89"/>
+        <source>Select settings file</source>
+        <translation>Settingsdatei auswählen</translation>
     </message>
     <message>
-      <location filename="../DjangoCheckOptionsDialog.py" line="89" />
-      <source>Python Files (*.py)</source>
-      <translation>Python Datei (*.py)</translation>
+        <location filename="../DjangoCheckOptionsDialog.py" line="89"/>
+        <source>Python Files (*.py)</source>
+        <translation>Python Datei (*.py)</translation>
     </message>
-  </context>
-  <context>
+</context>
+<context>
     <name>DjangoDialog</name>
     <message>
-      <location filename="../DjangoDialog.py" line="214" />
-      <source>Process Generation Error</source>
-      <translation>Fehler beim Prozessstart</translation>
+        <location filename="../DjangoDialog.py" line="214"/>
+        <source>Process Generation Error</source>
+        <translation>Fehler beim Prozessstart</translation>
     </message>
     <message>
-      <location filename="../DjangoDialog.py" line="215" />
-      <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
-      <translation>Der Prozess {0} konnte nicht gestartet werden. Stellen Sie sicher, dass er sich im Suchpfad befindet.</translation>
+        <location filename="../DjangoDialog.py" line="215"/>
+        <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
+        <translation>Der Prozess {0} konnte nicht gestartet werden. Stellen Sie sicher, dass er sich im Suchpfad befindet.</translation>
     </message>
     <message>
-      <location filename="../DjangoDialog.py" line="305" />
-      <source>Select data file</source>
-      <translation>Wähle Datendatei</translation>
+        <location filename="../DjangoDialog.py" line="305"/>
+        <source>Select data file</source>
+        <translation>Wähle Datendatei</translation>
     </message>
     <message>
-      <location filename="../DjangoDialog.py" line="323" />
-      <source>Error saving data</source>
-      <translation>Fehler beim Sichern der Daten</translation>
+        <location filename="../DjangoDialog.py" line="323"/>
+        <source>Error saving data</source>
+        <translation>Fehler beim Sichern der Daten</translation>
     </message>
     <message>
-      <location filename="../DjangoDialog.py" line="324" />
-      <source>&lt;p&gt;The data could not be written to &lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
-      <translation>&lt;p&gt;Die Daten konnten nicht nach &lt;b&gt;{0}&lt;/b&gt; geschrieben werden.&lt;/p&gt;&lt;p&gt;Ursache: {1}&lt;/p&gt;</translation>
+        <location filename="../DjangoDialog.py" line="324"/>
+        <source>&lt;p&gt;The data could not be written to &lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
+        <translation>&lt;p&gt;Die Daten konnten nicht nach &lt;b&gt;{0}&lt;/b&gt; geschrieben werden.&lt;/p&gt;&lt;p&gt;Ursache: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../DjangoDialog.ui" line="0" />
-      <source>Django</source>
-      <translation>Django</translation>
+        <location filename="../DjangoDialog.ui" line="0"/>
+        <source>Django</source>
+        <translation>Django</translation>
     </message>
     <message>
-      <location filename="../DjangoDialog.ui" line="0" />
-      <source>Output</source>
-      <translation>Ausgabe</translation>
+        <location filename="../DjangoDialog.ui" line="0"/>
+        <source>Output</source>
+        <translation>Ausgabe</translation>
     </message>
     <message>
-      <location filename="../DjangoDialog.ui" line="0" />
-      <source>Errors</source>
-      <translation>Fehler</translation>
+        <location filename="../DjangoDialog.ui" line="0"/>
+        <source>Errors</source>
+        <translation>Fehler</translation>
     </message>
     <message>
-      <location filename="../DjangoDialog.ui" line="0" />
-      <source>Input</source>
-      <translation>Eingabe</translation>
+        <location filename="../DjangoDialog.ui" line="0"/>
+        <source>Input</source>
+        <translation>Eingabe</translation>
     </message>
     <message>
-      <location filename="../DjangoDialog.ui" line="0" />
-      <source>Press to send the input to the manage.py process</source>
-      <translation>Drücken, um die Eingabe an den manage.py Prozess zu senden</translation>
+        <location filename="../DjangoDialog.ui" line="0"/>
+        <source>Press to send the input to the manage.py process</source>
+        <translation>Drücken, um die Eingabe an den manage.py Prozess zu senden</translation>
     </message>
     <message>
-      <location filename="../DjangoDialog.ui" line="0" />
-      <source>&amp;Send</source>
-      <translation>&amp;Senden</translation>
+        <location filename="../DjangoDialog.ui" line="0"/>
+        <source>&amp;Send</source>
+        <translation>&amp;Senden</translation>
     </message>
     <message>
-      <location filename="../DjangoDialog.ui" line="0" />
-      <source>Alt+S</source>
-      <translation>Alt+S</translation>
+        <location filename="../DjangoDialog.ui" line="0"/>
+        <source>Alt+S</source>
+        <translation>Alt+S</translation>
     </message>
     <message>
-      <location filename="../DjangoDialog.ui" line="0" />
-      <source>Enter data to be sent to the manage.py process</source>
-      <translation>Gib die an den manage.py Prozess zu sendenden Daten ein</translation>
+        <location filename="../DjangoDialog.ui" line="0"/>
+        <source>Enter data to be sent to the manage.py process</source>
+        <translation>Gib die an den manage.py Prozess zu sendenden Daten ein</translation>
     </message>
     <message>
-      <location filename="../DjangoDialog.ui" line="0" />
-      <source>Select to switch the input field to password mode</source>
-      <translation>Auswählen, um das Eingabefeld in den Kennwortmodus zu schalten</translation>
+        <location filename="../DjangoDialog.ui" line="0"/>
+        <source>Select to switch the input field to password mode</source>
+        <translation>Auswählen, um das Eingabefeld in den Kennwortmodus zu schalten</translation>
     </message>
     <message>
-      <location filename="../DjangoDialog.ui" line="0" />
-      <source>&amp;Password Mode</source>
-      <translation>&amp;Kennwortmodus</translation>
+        <location filename="../DjangoDialog.ui" line="0"/>
+        <source>&amp;Password Mode</source>
+        <translation>&amp;Kennwortmodus</translation>
     </message>
     <message>
-      <location filename="../DjangoDialog.ui" line="0" />
-      <source>Alt+P</source>
-      <translation>Alt+K</translation>
+        <location filename="../DjangoDialog.ui" line="0"/>
+        <source>Alt+P</source>
+        <translation>Alt+K</translation>
     </message>
-  </context>
-  <context>
+</context>
+<context>
     <name>DjangoDiffsettingsDataDialog</name>
     <message>
-      <location filename="../DjangoDiffsettingsDataDialog.ui" line="0" />
-      <source>diffsettings Command Options</source>
-      <translation>diffsettings Kommandozeilenoptionen</translation>
+        <location filename="../DjangoDiffsettingsDataDialog.ui" line="0"/>
+        <source>diffsettings Command Options</source>
+        <translation>diffsettings Kommandozeilenoptionen</translation>
     </message>
     <message>
-      <location filename="../DjangoDiffsettingsDataDialog.ui" line="0" />
-      <source>Select to show all settings (even if the have the default value)</source>
-      <translation>Auswählen, um alle Einstellungen zu zeigen (auch wenn sie den Standardwert besitzen)</translation>
+        <location filename="../DjangoDiffsettingsDataDialog.ui" line="0"/>
+        <source>Select to show all settings (even if the have the default value)</source>
+        <translation>Auswählen, um alle Einstellungen zu zeigen (auch wenn sie den Standardwert besitzen)</translation>
     </message>
     <message>
-      <location filename="../DjangoDiffsettingsDataDialog.ui" line="0" />
-      <source>Show all settings</source>
-      <translation>Alle Einstellungen anzeigen</translation>
+        <location filename="../DjangoDiffsettingsDataDialog.ui" line="0"/>
+        <source>Show all settings</source>
+        <translation>Alle Einstellungen anzeigen</translation>
     </message>
     <message>
-      <location filename="../DjangoDiffsettingsDataDialog.ui" line="0" />
-      <source>Default Module:</source>
-      <translation>Standardmodul:</translation>
+        <location filename="../DjangoDiffsettingsDataDialog.ui" line="0"/>
+        <source>Default Module:</source>
+        <translation>Standardmodul:</translation>
     </message>
     <message>
-      <location filename="../DjangoDiffsettingsDataDialog.ui" line="0" />
-      <source>Enter the name of the module containing the default settings (1.11.0+ only)</source>
-      <translation>Gib den Namen des Moduls ein, das die Standardwerte enthält (nur 1.11.0+)</translation>
+        <location filename="../DjangoDiffsettingsDataDialog.ui" line="0"/>
+        <source>Enter the name of the module containing the default settings (1.11.0+ only)</source>
+        <translation>Gib den Namen des Moduls ein, das die Standardwerte enthält (nur 1.11.0+)</translation>
     </message>
     <message>
-      <location filename="../DjangoDiffsettingsDataDialog.ui" line="0" />
-      <source>Output Format:</source>
-      <translation>Ausgabeformat:</translation>
+        <location filename="../DjangoDiffsettingsDataDialog.ui" line="0"/>
+        <source>Output Format:</source>
+        <translation>Ausgabeformat:</translation>
     </message>
     <message>
-      <location filename="../DjangoDiffsettingsDataDialog.ui" line="0" />
-      <source>Select the output format (2.0.0+ only)</source>
-      <translation>Wähle das Ausgabeformat (nur 2.0.0+)</translation>
+        <location filename="../DjangoDiffsettingsDataDialog.ui" line="0"/>
+        <source>Select the output format (2.0.0+ only)</source>
+        <translation>Wähle das Ausgabeformat (nur 2.0.0+)</translation>
     </message>
     <message>
-      <location filename="../DjangoDiffsettingsDataDialog.py" line="33" />
-      <source>Hash Format</source>
-      <translation>Hash Format</translation>
+        <location filename="../DjangoDiffsettingsDataDialog.py" line="33"/>
+        <source>Hash Format</source>
+        <translation>Hash Format</translation>
     </message>
     <message>
-      <location filename="../DjangoDiffsettingsDataDialog.py" line="34" />
-      <source>Unified Diff</source>
-      <translation>Unified Diff</translation>
+        <location filename="../DjangoDiffsettingsDataDialog.py" line="34"/>
+        <source>Unified Diff</source>
+        <translation>Unified Diff</translation>
     </message>
-  </context>
-  <context>
+</context>
+<context>
     <name>DjangoDumpdataDataDialog</name>
     <message>
-      <location filename="../DjangoDumpdataDataDialog.py" line="41" />
-      <source>JSON</source>
-      <translation>JSON</translation>
+        <location filename="../DjangoDumpdataDataDialog.py" line="41"/>
+        <source>JSON</source>
+        <translation>JSON</translation>
     </message>
     <message>
-      <location filename="../DjangoDumpdataDataDialog.py" line="42" />
-      <source>XML</source>
-      <translation>XML</translation>
+        <location filename="../DjangoDumpdataDataDialog.py" line="42"/>
+        <source>XML</source>
+        <translation>XML</translation>
     </message>
     <message>
-      <location filename="../DjangoDumpdataDataDialog.py" line="46" />
-      <source>YAML</source>
-      <translation>YAML</translation>
+        <location filename="../DjangoDumpdataDataDialog.py" line="46"/>
+        <source>YAML</source>
+        <translation>YAML</translation>
     </message>
     <message>
-      <location filename="../DjangoDumpdataDataDialog.ui" line="0" />
-      <source>dumpdata Command Options</source>
-      <translation>dumpdata Kommandozeilenoptionen</translation>
+        <location filename="../DjangoDumpdataDataDialog.ui" line="0"/>
+        <source>dumpdata Command Options</source>
+        <translation>dumpdata Kommandozeilenoptionen</translation>
     </message>
     <message>
-      <location filename="../DjangoDumpdataDataDialog.ui" line="0" />
-      <source>Applications</source>
-      <translation>Anwendungen</translation>
+        <location filename="../DjangoDumpdataDataDialog.ui" line="0"/>
+        <source>Applications</source>
+        <translation>Anwendungen</translation>
     </message>
     <message>
-      <location filename="../DjangoDumpdataDataDialog.ui" line="0" />
-      <source>Enter the list of applications separated by spaces. Leave empty for all.</source>
-      <translation>Gib die Liste der Applikationen durch Leerzeichen getrennt ein. Leer lassen, um alle zu sichern.</translation>
+        <location filename="../DjangoDumpdataDataDialog.ui" line="0"/>
+        <source>Enter the list of applications separated by spaces. Leave empty for all.</source>
+        <translation>Gib die Liste der Applikationen durch Leerzeichen getrennt ein. Leer lassen, um alle zu sichern.</translation>
     </message>
     <message>
-      <location filename="../DjangoDumpdataDataDialog.ui" line="0" />
-      <source>Exclude Applications</source>
-      <translation>Anwendungen ausschließen</translation>
+        <location filename="../DjangoDumpdataDataDialog.ui" line="0"/>
+        <source>Exclude Applications</source>
+        <translation>Anwendungen ausschließen</translation>
     </message>
     <message>
-      <location filename="../DjangoDumpdataDataDialog.ui" line="0" />
-      <source>Enter the list of applications separated by spaces.</source>
-      <translation>Gib die Liste der Applikationen durch Leerzeichen getrennt ein.</translation>
+        <location filename="../DjangoDumpdataDataDialog.ui" line="0"/>
+        <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="../DjangoDumpdataDataDialog.ui" line="0" />
-      <source>Dump Format</source>
-      <translation>Dump Format</translation>
+        <location filename="../DjangoDumpdataDataDialog.ui" line="0"/>
+        <source>Dump Format</source>
+        <translation>Dump Format</translation>
     </message>
     <message>
-      <location filename="../DjangoDumpdataDataDialog.ui" line="0" />
-      <source>Serialization Format:</source>
-      <translation>Serialisierungsformat:</translation>
+        <location filename="../DjangoDumpdataDataDialog.ui" line="0"/>
+        <source>Serialization Format:</source>
+        <translation>Serialisierungsformat:</translation>
     </message>
     <message>
-      <location filename="../DjangoDumpdataDataDialog.ui" line="0" />
-      <source>Indentation Level:</source>
-      <translation>Einrücklänge:</translation>
+        <location filename="../DjangoDumpdataDataDialog.ui" line="0"/>
+        <source>Indentation Level:</source>
+        <translation>Einrücklänge:</translation>
     </message>
     <message>
-      <location filename="../DjangoDumpdataDataDialog.ui" line="0" />
-      <source>Enter the indentation level to be used when pretty-printing output</source>
-      <translation>Gib die Länge der Einrückung für eine lesbare Ausgabe ein</translation>
+        <location filename="../DjangoDumpdataDataDialog.ui" line="0"/>
+        <source>Enter the indentation level to be used when pretty-printing output</source>
+        <translation>Gib die Länge der Einrückung für eine lesbare Ausgabe ein</translation>
     </message>
-  </context>
-  <context>
+</context>
+<context>
     <name>DjangoLoaddataDataDialog</name>
     <message>
-      <location filename="../DjangoLoaddataDataDialog.ui" line="0" />
-      <source>loaddata Command Options</source>
-      <translation>loaddata Kommandozeilenoptionen</translation>
+        <location filename="../DjangoLoaddataDataDialog.ui" line="0"/>
+        <source>loaddata Command Options</source>
+        <translation>loaddata Kommandozeilenoptionen</translation>
     </message>
     <message>
-      <location filename="../DjangoLoaddataDataDialog.ui" line="0" />
-      <source>Select to ignore fields and models that were deleted since the creation of the fixture</source>
-      <translation>Auswählen, um Felder und Modelle zu ignorieren, die seit der letzten Fixturegenerierung gelöscht wurden</translation>
+        <location filename="../DjangoLoaddataDataDialog.ui" line="0"/>
+        <source>Select to ignore fields and models that were deleted since the creation of the fixture</source>
+        <translation>Auswählen, um Felder und Modelle zu ignorieren, die seit der letzten Fixturegenerierung gelöscht wurden</translation>
     </message>
     <message>
-      <location filename="../DjangoLoaddataDataDialog.ui" line="0" />
-      <source>Ignore non-existent fields and models</source>
-      <translation>Ignoriere nicht existente Felder und Modelle</translation>
+        <location filename="../DjangoLoaddataDataDialog.ui" line="0"/>
+        <source>Ignore non-existent fields and models</source>
+        <translation>Ignoriere nicht existente Felder und Modelle</translation>
     </message>
     <message>
-      <location filename="../DjangoLoaddataDataDialog.ui" line="0" />
-      <source>Application Label:</source>
-      <translation>Applikationslabel:</translation>
+        <location filename="../DjangoLoaddataDataDialog.ui" line="0"/>
+        <source>Application Label:</source>
+        <translation>Applikationslabel:</translation>
     </message>
     <message>
-      <location filename="../DjangoLoaddataDataDialog.ui" line="0" />
-      <source>Enter the label of an application to search for fixtures</source>
-      <translation>Gib das Label der Applikation ein, die nach Fixtures durchsucht werden soll</translation>
+        <location filename="../DjangoLoaddataDataDialog.ui" line="0"/>
+        <source>Enter the label of an application to search for fixtures</source>
+        <translation>Gib das Label der Applikation ein, die nach Fixtures durchsucht werden soll</translation>
     </message>
     <message>
-      <location filename="../DjangoLoaddataDataDialog.ui" line="0" />
-      <source>Fixtures</source>
-      <translation>Fixtures</translation>
+        <location filename="../DjangoLoaddataDataDialog.ui" line="0"/>
+        <source>Fixtures</source>
+        <translation>Fixtures</translation>
     </message>
     <message>
-      <location filename="../DjangoLoaddataDataDialog.ui" line="0" />
-      <source>Enter the list of fixture patterns or the path of a fixture file:</source>
-      <translation>Gib die Liste der Fixturenamen oder den Pfad einer Fixturedatei ein:</translation>
+        <location filename="../DjangoLoaddataDataDialog.ui" line="0"/>
+        <source>Enter the list of fixture patterns or the path of a fixture file:</source>
+        <translation>Gib die Liste der Fixturenamen oder den Pfad einer Fixturedatei ein:</translation>
     </message>
     <message>
-      <location filename="../DjangoLoaddataDataDialog.ui" line="0" />
-      <source>Select a fixture file via a file selection dialog</source>
-      <translation>Wähle eine Fixturedatei mittels eines Dateiauswahldialoges aus</translation>
+        <location filename="../DjangoLoaddataDataDialog.ui" line="0"/>
+        <source>Select a fixture file via a file selection dialog</source>
+        <translation>Wähle eine Fixturedatei mittels eines Dateiauswahldialoges aus</translation>
     </message>
     <message>
-      <location filename="../DjangoLoaddataDataDialog.ui" line="0" />
-      <source>Exclude</source>
-      <translation>Ausschlüsse</translation>
+        <location filename="../DjangoLoaddataDataDialog.ui" line="0"/>
+        <source>Exclude</source>
+        <translation>Ausschlüsse</translation>
     </message>
     <message>
-      <location filename="../DjangoLoaddataDataDialog.ui" line="0" />
-      <source>Enter the list of applications and models to omit searching for fixtures:</source>
-      <translation>Gib die Liste der Applikationen und Modelle ein, die bei der Suche nach Fixtures übersprungen werden sollen:</translation>
+        <location filename="../DjangoLoaddataDataDialog.ui" line="0"/>
+        <source>Enter the list of applications and models to omit searching for fixtures:</source>
+        <translation>Gib die Liste der Applikationen und Modelle ein, die bei der Suche nach Fixtures übersprungen werden sollen:</translation>
     </message>
     <message>
-      <location filename="../DjangoLoaddataDataDialog.py" line="71" />
-      <source>JSON Files (*.json);;XML Files (*.xml);;</source>
-      <translation>JSON Dateien (*.json);;XML Dateien (*.xml);;</translation>
+        <location filename="../DjangoLoaddataDataDialog.py" line="71"/>
+        <source>JSON Files (*.json);;XML Files (*.xml);;</source>
+        <translation>JSON Dateien (*.json);;XML Dateien (*.xml);;</translation>
     </message>
     <message>
-      <location filename="../DjangoLoaddataDataDialog.py" line="75" />
-      <source>YAML Files (*.yaml);;</source>
-      <translation>YAML Dateien (*.yaml);;</translation>
+        <location filename="../DjangoLoaddataDataDialog.py" line="75"/>
+        <source>YAML Files (*.yaml);;</source>
+        <translation>YAML Dateien (*.yaml);;</translation>
     </message>
     <message>
-      <location filename="../DjangoLoaddataDataDialog.py" line="76" />
-      <source>All Files (*)</source>
-      <translation>Alle Dateien (*)</translation>
+        <location filename="../DjangoLoaddataDataDialog.py" line="76"/>
+        <source>All Files (*)</source>
+        <translation>Alle Dateien (*)</translation>
     </message>
     <message>
-      <location filename="../DjangoLoaddataDataDialog.py" line="80" />
-      <source>Select fixture file</source>
-      <translation>Wähle Fixturedatei</translation>
+        <location filename="../DjangoLoaddataDataDialog.py" line="80"/>
+        <source>Select fixture file</source>
+        <translation>Wähle Fixturedatei</translation>
     </message>
-  </context>
-  <context>
+</context>
+<context>
     <name>DjangoMakeMigrationsDialog</name>
     <message>
-      <location filename="../DjangoMakeMigrationsDialog.ui" line="0" />
-      <source>Make Migrations</source>
-      <translation>Migrationen generieren</translation>
+        <location filename="../DjangoMakeMigrationsDialog.ui" line="0"/>
+        <source>Make Migrations</source>
+        <translation>Migrationen generieren</translation>
     </message>
     <message>
-      <location filename="../DjangoMakeMigrationsDialog.ui" line="0" />
-      <source>Applications:</source>
-      <translation>Anwendungen:</translation>
+        <location filename="../DjangoMakeMigrationsDialog.ui" line="0"/>
+        <source>Applications:</source>
+        <translation>Anwendungen:</translation>
     </message>
     <message>
-      <location filename="../DjangoMakeMigrationsDialog.ui" line="0" />
-      <source>Enter the list of applications separated by spaces.</source>
-      <translation>Gib die Liste der Anwendungen durch Leerzeichen getrennt ein.</translation>
+        <location filename="../DjangoMakeMigrationsDialog.ui" line="0"/>
+        <source>Enter the list of applications separated by spaces.</source>
+        <translation>Gib die Liste der Anwendungen durch Leerzeichen getrennt ein.</translation>
     </message>
     <message>
-      <location filename="../DjangoMakeMigrationsDialog.ui" line="0" />
-      <source>Name:</source>
-      <translation>Name:</translation>
+        <location filename="../DjangoMakeMigrationsDialog.ui" line="0"/>
+        <source>Name:</source>
+        <translation>Name:</translation>
     </message>
     <message>
-      <location filename="../DjangoMakeMigrationsDialog.ui" line="0" />
-      <source>Enter a name for the migration</source>
-      <translation>Gibe einen Namen für die Migration ein</translation>
+        <location filename="../DjangoMakeMigrationsDialog.ui" line="0"/>
+        <source>Enter a name for the migration</source>
+        <translation>Gibe einen Namen für die Migration ein</translation>
     </message>
     <message>
-      <location filename="../DjangoMakeMigrationsDialog.ui" line="0" />
-      <source>Select to create empty migrations</source>
-      <translation>Auswählen, um leere Migrationen zu erzeugen</translation>
+        <location filename="../DjangoMakeMigrationsDialog.ui" line="0"/>
+        <source>Select to create empty migrations</source>
+        <translation>Auswählen, um leere Migrationen zu erzeugen</translation>
     </message>
     <message>
-      <location filename="../DjangoMakeMigrationsDialog.ui" line="0" />
-      <source>Create empty migrations</source>
-      <translation>Erzeuge leere Migration</translation>
+        <location filename="../DjangoMakeMigrationsDialog.ui" line="0"/>
+        <source>Create empty migrations</source>
+        <translation>Erzeuge leere Migration</translation>
     </message>
     <message>
-      <location filename="../DjangoMakeMigrationsDialog.ui" line="0" />
-      <source>Select to fix migration conflicts</source>
-      <translation>Auswählen, um Migrationskonflikte zu beheben</translation>
+        <location filename="../DjangoMakeMigrationsDialog.ui" line="0"/>
+        <source>Select to fix migration conflicts</source>
+        <translation>Auswählen, um Migrationskonflikte zu beheben</translation>
     </message>
     <message>
-      <location filename="../DjangoMakeMigrationsDialog.ui" line="0" />
-      <source>Fix migration conflicts</source>
-      <translation>Migrationskonflikte beheben</translation>
+        <location filename="../DjangoMakeMigrationsDialog.ui" line="0"/>
+        <source>Fix migration conflicts</source>
+        <translation>Migrationskonflikte beheben</translation>
     </message>
     <message>
-      <location filename="../DjangoMakeMigrationsDialog.ui" line="0" />
-      <source>Select to perform a dry-run</source>
-      <translation>Auswählen, um einen Trockenlauf zu starten</translation>
+        <location filename="../DjangoMakeMigrationsDialog.ui" line="0"/>
+        <source>Select to perform a dry-run</source>
+        <translation>Auswählen, um einen Trockenlauf zu starten</translation>
     </message>
     <message>
-      <location filename="../DjangoMakeMigrationsDialog.ui" line="0" />
-      <source>Dry-Run only</source>
-      <translation>nur Trockenlauf</translation>
+        <location filename="../DjangoMakeMigrationsDialog.ui" line="0"/>
+        <source>Dry-Run only</source>
+        <translation>nur Trockenlauf</translation>
     </message>
-  </context>
-  <context>
+</context>
+<context>
     <name>DjangoMigrationSelectionDialog</name>
     <message>
-      <location filename="../DjangoMigrationSelectionDialog.ui" line="0" />
-      <source>Select Migration</source>
-      <translation>Migration auswählen</translation>
+        <location filename="../DjangoMigrationSelectionDialog.ui" line="0"/>
+        <source>Select Migration</source>
+        <translation>Migration auswählen</translation>
     </message>
     <message>
-      <location filename="../DjangoMigrationSelectionDialog.ui" line="0" />
-      <source>Select the application</source>
-      <translation>Wähle eine Anwendung aus</translation>
+        <location filename="../DjangoMigrationSelectionDialog.ui" line="0"/>
+        <source>Select the application</source>
+        <translation>Wähle eine Anwendung aus</translation>
     </message>
     <message>
-      <location filename="../DjangoMigrationSelectionDialog.ui" line="0" />
-      <source>Select a migration</source>
-      <translation>Wähle eine Migration aus</translation>
+        <location filename="../DjangoMigrationSelectionDialog.ui" line="0"/>
+        <source>Select a migration</source>
+        <translation>Wähle eine Migration aus</translation>
     </message>
     <message>
-      <location filename="../DjangoMigrationSelectionDialog.ui" line="0" />
-      <source>Migration:</source>
-      <translation>Migration:</translation>
+        <location filename="../DjangoMigrationSelectionDialog.ui" line="0"/>
+        <source>Migration:</source>
+        <translation>Migration:</translation>
     </message>
     <message>
-      <location filename="../DjangoMigrationSelectionDialog.ui" line="0" />
-      <source>Application:</source>
-      <translation>Anwendung:</translation>
+        <location filename="../DjangoMigrationSelectionDialog.ui" line="0"/>
+        <source>Application:</source>
+        <translation>Anwendung:</translation>
     </message>
-  </context>
-  <context>
+</context>
+<context>
     <name>DjangoMigrationsListDialog</name>
     <message>
-      <location filename="../DjangoMigrationsListDialog.py" line="68" />
-      <source>Available Migrations</source>
-      <translation>Verfügbare Migrationen</translation>
+        <location filename="../DjangoMigrationsListDialog.py" line="68"/>
+        <source>Available Migrations</source>
+        <translation>Verfügbare Migrationen</translation>
     </message>
     <message>
-      <location filename="../DjangoMigrationsListDialog.py" line="71" />
-      <source>Name</source>
-      <translation>Name</translation>
+        <location filename="../DjangoMigrationsListDialog.py" line="71"/>
+        <source>Name</source>
+        <translation>Name</translation>
     </message>
     <message>
-      <location filename="../DjangoMigrationsListDialog.py" line="78" />
-      <source>Migrations Plan</source>
-      <translation>Migrationsplan</translation>
+        <location filename="../DjangoMigrationsListDialog.py" line="78"/>
+        <source>Migrations Plan</source>
+        <translation>Migrationsplan</translation>
     </message>
     <message>
-      <location filename="../DjangoMigrationsListDialog.py" line="81" />
-      <source>Migration</source>
-      <translation>Migration</translation>
+        <location filename="../DjangoMigrationsListDialog.py" line="81"/>
+        <source>Migration</source>
+        <translation>Migration</translation>
     </message>
     <message>
-      <location filename="../DjangoMigrationsListDialog.py" line="82" />
-      <source>Dependencies</source>
-      <translation>Abhängigkeiten</translation>
+        <location filename="../DjangoMigrationsListDialog.py" line="82"/>
+        <source>Dependencies</source>
+        <translation>Abhängigkeiten</translation>
     </message>
     <message>
-      <location filename="../DjangoMigrationsListDialog.py" line="90" />
-      <source>&amp;Refresh</source>
-      <translation>A&amp;ktualisieren</translation>
+        <location filename="../DjangoMigrationsListDialog.py" line="90"/>
+        <source>&amp;Refresh</source>
+        <translation>A&amp;ktualisieren</translation>
     </message>
     <message>
-      <location filename="../DjangoMigrationsListDialog.py" line="92" />
-      <source>Press to refresh the list</source>
-      <translation>Drücken, um die Liste zu aktualisieren</translation>
+        <location filename="../DjangoMigrationsListDialog.py" line="92"/>
+        <source>Press to refresh the list</source>
+        <translation>Drücken, um die Liste zu aktualisieren</translation>
     </message>
     <message>
-      <location filename="../DjangoMigrationsListDialog.py" line="194" />
-      <source>Process Generation Error</source>
-      <translation>Fehler beim Prozessstart</translation>
+        <location filename="../DjangoMigrationsListDialog.py" line="194"/>
+        <source>Process Generation Error</source>
+        <translation>Fehler beim Prozessstart</translation>
     </message>
     <message>
-      <location filename="../DjangoMigrationsListDialog.py" line="195" />
-      <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
-      <translation>Der Prozess {0} konnte nicht gestartet werden. Stellen Sie sicher, dass er sich im Suchpfad befindet.</translation>
+        <location filename="../DjangoMigrationsListDialog.py" line="195"/>
+        <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
+        <translation>Der Prozess {0} konnte nicht gestartet werden. Stellen Sie sicher, dass er sich im Suchpfad befindet.</translation>
     </message>
     <message>
-      <location filename="../DjangoMigrationsListDialog.py" line="309" />
-      <source>Apply All Migrations</source>
-      <translation>Alle Migrationen anwenden</translation>
+        <location filename="../DjangoMigrationsListDialog.py" line="309"/>
+        <source>Apply All Migrations</source>
+        <translation>Alle Migrationen anwenden</translation>
     </message>
     <message>
-      <location filename="../DjangoMigrationsListDialog.py" line="340" />
-      <location filename="../DjangoMigrationsListDialog.py" line="320" />
-      <source>Apply Selected Migrations</source>
-      <translation>Ausgewählte Migrationen anwenden</translation>
+        <location filename="../DjangoMigrationsListDialog.py" line="340"/>
+        <location filename="../DjangoMigrationsListDialog.py" line="320"/>
+        <source>Apply Selected Migrations</source>
+        <translation>Ausgewählte Migrationen anwenden</translation>
+    </message>
+    <message>
+        <location filename="../DjangoMigrationsListDialog.py" line="323"/>
+        <source>Unapply Migrations</source>
+        <translation>Migrationen rückgängig machen</translation>
     </message>
     <message>
-      <location filename="../DjangoMigrationsListDialog.py" line="323" />
-      <source>Unapply Migrations</source>
-      <translation>Migrationen rückgängig machen</translation>
+        <location filename="../DjangoMigrationsListDialog.py" line="401"/>
+        <location filename="../DjangoMigrationsListDialog.py" line="327"/>
+        <source>Make Migrations</source>
+        <translation>Migrationen generieren</translation>
     </message>
     <message>
-      <location filename="../DjangoMigrationsListDialog.py" line="401" />
-      <location filename="../DjangoMigrationsListDialog.py" line="327" />
-      <source>Make Migrations</source>
-      <translation>Migrationen generieren</translation>
+        <location filename="../DjangoMigrationsListDialog.py" line="330"/>
+        <source>Make Empty Migrations</source>
+        <translation>Leere Migration generieren</translation>
     </message>
     <message>
-      <location filename="../DjangoMigrationsListDialog.py" line="330" />
-      <source>Make Empty Migrations</source>
-      <translation>Leere Migration generieren</translation>
+        <location filename="../DjangoMigrationsListDialog.py" line="335"/>
+        <source>Make Migrations (dry-run)</source>
+        <translation>Migrationen generieren (Trockenlauf)</translation>
     </message>
     <message>
-      <location filename="../DjangoMigrationsListDialog.py" line="335" />
-      <source>Make Migrations (dry-run)</source>
-      <translation>Migrationen generieren (Trockenlauf)</translation>
+        <location filename="../DjangoMigrationsListDialog.py" line="402"/>
+        <source>Enter a name for the migrations (leave empty to use system supplied name):</source>
+        <translation>Gib einen Namen für die Migration ein (leer lassen, um einen erzeugten Namen zu verwenden):</translation>
     </message>
     <message>
-      <location filename="../DjangoMigrationsListDialog.py" line="402" />
-      <source>Enter a name for the migrations (leave empty to use system supplied name):</source>
-      <translation>Gib einen Namen für die Migration ein (leer lassen, um einen erzeugten Namen zu verwenden):</translation>
+        <location filename="../DjangoMigrationsListDialog.ui" line="0"/>
+        <source>Errors</source>
+        <translation>Fehler</translation>
     </message>
-    <message>
-      <location filename="../DjangoMigrationsListDialog.ui" line="0" />
-      <source>Errors</source>
-      <translation>Fehler</translation>
-    </message>
-  </context>
-  <context>
+</context>
+<context>
     <name>DjangoPage</name>
     <message>
-      <location filename="../ConfigurationPage/DjangoPage.ui" line="0" />
-      <source>&lt;b&gt;Configure Django&lt;/b&gt;</source>
-      <translation>Django einstellen</translation>
+        <location filename="../ConfigurationPage/DjangoPage.ui" line="0"/>
+        <source>&lt;b&gt;Configure Django&lt;/b&gt;</source>
+        <translation>Django einstellen</translation>
     </message>
     <message>
-      <location filename="../ConfigurationPage/DjangoPage.ui" line="0" />
-      <source>Console Commands</source>
-      <translation>Konsolenbefehle</translation>
+        <location filename="../ConfigurationPage/DjangoPage.ui" line="0"/>
+        <source>Console Commands</source>
+        <translation>Konsolenbefehle</translation>
     </message>
     <message>
-      <location filename="../ConfigurationPage/DjangoPage.ui" line="0" />
-      <source>Console Command:</source>
-      <translation>Konsole:</translation>
+        <location filename="../ConfigurationPage/DjangoPage.ui" line="0"/>
+        <source>Console Command:</source>
+        <translation>Konsole:</translation>
+    </message>
+    <message>
+        <location filename="../ConfigurationPage/DjangoPage.ui" line="0"/>
+        <source>Enter the console command</source>
+        <translation>Gib den Befehl für das Konsolenfenster ein</translation>
     </message>
     <message>
-      <location filename="../ConfigurationPage/DjangoPage.ui" line="0" />
-      <source>Enter the console command</source>
-      <translation>Gib den Befehl für das Konsolenfenster ein</translation>
+        <location filename="../ConfigurationPage/DjangoPage.ui" line="0"/>
+        <source>Console Command (non-closing):</source>
+        <translation>Konsole (nicht schließend):</translation>
     </message>
     <message>
-      <location filename="../ConfigurationPage/DjangoPage.ui" line="0" />
-      <source>Console Command (non-closing):</source>
-      <translation>Konsole (nicht schließend):</translation>
+        <location filename="../ConfigurationPage/DjangoPage.ui" line="0"/>
+        <source>Enter the console command for a non-closing console</source>
+        <translation>Gib den Befehl für das nicht schließende Konsolenfenster ein</translation>
     </message>
     <message>
-      <location filename="../ConfigurationPage/DjangoPage.ui" line="0" />
-      <source>Enter the console command for a non-closing console</source>
-      <translation>Gib den Befehl für das nicht schließende Konsolenfenster ein</translation>
+        <location filename="../ConfigurationPage/DjangoPage.ui" line="0"/>
+        <source>&lt;b&gt;Note:&lt;/b&gt; The console command for a console, that is spawning (i.e. exits before the console window is closed), should be prefixed by an &apos;@&apos; character.</source>
+        <translation>&lt;b&gt;Hinweis:&lt;/b&gt; Der Konsolenbefehl für eine Konsole, die verzweigt (d.h. sie wird beendet bevor das Fenster geschlossen wurde), muss mit einem &apos;@&apos;-Zeichen beginnen.</translation>
     </message>
     <message>
-      <location filename="../ConfigurationPage/DjangoPage.ui" line="0" />
-      <source>&lt;b&gt;Note:&lt;/b&gt; The console command for a console, that is spawning (i.e. exits before the console window is closed), should be prefixed by an '@' character.</source>
-      <translation>&lt;b&gt;Hinweis:&lt;/b&gt; Der Konsolenbefehl für eine Konsole, die verzweigt (d.h. sie wird beendet bevor das Fenster geschlossen wurde), muss mit einem '@'-Zeichen beginnen.</translation>
+        <location filename="../ConfigurationPage/DjangoPage.ui" line="0"/>
+        <source>Server</source>
+        <translation>Server</translation>
     </message>
     <message>
-      <location filename="../ConfigurationPage/DjangoPage.ui" line="0" />
-      <source>Server</source>
-      <translation>Server</translation>
+        <location filename="../ConfigurationPage/DjangoPage.ui" line="0"/>
+        <source>Server Address:</source>
+        <translation>Server Adresse:</translation>
     </message>
     <message>
-      <location filename="../ConfigurationPage/DjangoPage.ui" line="0" />
-      <source>Server Address:</source>
-      <translation>Server Adresse:</translation>
+        <location filename="../ConfigurationPage/DjangoPage.ui" line="0"/>
+        <source>Enter the server port or server address and port (e.g. 127.0.0.1:8000 or [::1]:8000)</source>
+        <translation>Gib den Server Port oder die Server Adresse und Port ein (z.B. 127.0.0.1:8000 oder [::1]:8000)</translation>
     </message>
     <message>
-      <location filename="../ConfigurationPage/DjangoPage.ui" line="0" />
-      <source>Enter the server port or server address and port (e.g. 127.0.0.1:8000 or [::1]:8000)</source>
-      <translation>Gib den Server Port oder die Server Adresse und Port ein (z.B. 127.0.0.1:8000 oder [::1]:8000)</translation>
+        <location filename="../ConfigurationPage/DjangoPage.ui" line="0"/>
+        <source>Select to use IPv6</source>
+        <translation>Auswählen, um IPv6 zu verwenden</translation>
     </message>
     <message>
-      <location filename="../ConfigurationPage/DjangoPage.ui" line="0" />
-      <source>Select to use IPv6</source>
-      <translation>Auswählen, um IPv6 zu verwenden</translation>
+        <location filename="../ConfigurationPage/DjangoPage.ui" line="0"/>
+        <source>Use IPv6 protocol</source>
+        <translation>Verwende das IPv6 Protokoll</translation>
     </message>
     <message>
-      <location filename="../ConfigurationPage/DjangoPage.ui" line="0" />
-      <source>Use IPv6 protocol</source>
-      <translation>Verwende das IPv6 Protokoll</translation>
+        <location filename="../ConfigurationPage/DjangoPage.ui" line="0"/>
+        <source>Select to enable threading in the server</source>
+        <translation>Auswählen, um Threading im Server zu aktivieren</translation>
     </message>
     <message>
-      <location filename="../ConfigurationPage/DjangoPage.ui" line="0" />
-      <source>Select to enable threading in the server</source>
-      <translation>Auswählen, um Threading im Server zu aktivieren</translation>
+        <location filename="../ConfigurationPage/DjangoPage.ui" line="0"/>
+        <source>Enable Threading</source>
+        <translation>Threading aktivieren</translation>
     </message>
     <message>
-      <location filename="../ConfigurationPage/DjangoPage.ui" line="0" />
-      <source>Enable Threading</source>
-      <translation>Threading aktivieren</translation>
+        <location filename="../ConfigurationPage/DjangoPage.ui" line="0"/>
+        <source>Web-Browser</source>
+        <translation>Web-Browser</translation>
     </message>
     <message>
-      <location filename="../ConfigurationPage/DjangoPage.ui" line="0" />
-      <source>Web-Browser</source>
-      <translation>Web-Browser</translation>
+        <location filename="../ConfigurationPage/DjangoPage.ui" line="0"/>
+        <source>Select to use an external web-browser</source>
+        <translation>Auswählen, um einen externen Web-Browser zu benutzen</translation>
     </message>
     <message>
-      <location filename="../ConfigurationPage/DjangoPage.ui" line="0" />
-      <source>Select to use an external web-browser</source>
-      <translation>Auswählen, um einen externen Web-Browser zu benutzen</translation>
+        <location filename="../ConfigurationPage/DjangoPage.ui" line="0"/>
+        <source>Use external web-browser</source>
+        <translation>Externen Web-Browser benutzen</translation>
     </message>
     <message>
-      <location filename="../ConfigurationPage/DjangoPage.ui" line="0" />
-      <source>Use external web-browser</source>
-      <translation>Externen Web-Browser benutzen</translation>
+        <location filename="../ConfigurationPage/DjangoPage.ui" line="0"/>
+        <source>Recent Applications Lists</source>
+        <translation>Zuletzt verwendete Anwendungslisten</translation>
     </message>
     <message>
-      <location filename="../ConfigurationPage/DjangoPage.ui" line="0" />
-      <source>Recent Applications Lists</source>
-      <translation>Zuletzt verwendete Anwendungslisten</translation>
+        <location filename="../ConfigurationPage/DjangoPage.ui" line="0"/>
+        <source>Number of recent applications lists:</source>
+        <translation>Anzahl zuletzt verwendeter Anwendungslisten:</translation>
     </message>
     <message>
-      <location filename="../ConfigurationPage/DjangoPage.ui" line="0" />
-      <source>Number of recent applications lists:</source>
-      <translation>Anzahl zuletzt verwendeter Anwendungslisten:</translation>
+        <location filename="../ConfigurationPage/DjangoPage.ui" line="0"/>
+        <source>Enter the number of recent applications to remember</source>
+        <translation>Gib die zu merkende Anzahl an zuletzt verwendeten Anwendungslisten ein</translation>
     </message>
     <message>
-      <location filename="../ConfigurationPage/DjangoPage.ui" line="0" />
-      <source>Enter the number of recent applications to remember</source>
-      <translation>Gib die zu merkende Anzahl an zuletzt verwendeten Anwendungslisten ein</translation>
+        <location filename="../ConfigurationPage/DjangoPage.ui" line="0"/>
+        <source>Python 3</source>
+        <translation>Python 3</translation>
     </message>
     <message>
-      <location filename="../ConfigurationPage/DjangoPage.ui" line="0" />
-      <source>Python 3</source>
-      <translation>Python 3</translation>
+        <location filename="../ConfigurationPage/DjangoPage.ui" line="0"/>
+        <source>Django Virtual Environment</source>
+        <translation>Virtuelle Django Umgebung</translation>
     </message>
     <message>
-      <location filename="../ConfigurationPage/DjangoPage.ui" line="0" />
-      <source>Django Virtual Environment</source>
-      <translation>Virtuelle Django Umgebung</translation>
+        <location filename="../ConfigurationPage/DjangoPage.ui" line="0"/>
+        <source>Select the Virtual Environment to be used with Django</source>
+        <translation>Wähle die mit Django zu verwendende virtuelle Umgebung aus</translation>
     </message>
     <message>
-      <location filename="../ConfigurationPage/DjangoPage.ui" line="0" />
-      <source>Select the Virtual Environment to be used with Django</source>
-      <translation>Wähle die mit Django zu verwendende virtuelle Umgebung aus</translation>
+        <location filename="../ConfigurationPage/DjangoPage.ui" line="0"/>
+        <source>Django Python Console:</source>
+        <translation>Django Python Konsole:</translation>
     </message>
     <message>
-      <location filename="../ConfigurationPage/DjangoPage.ui" line="0" />
-      <source>Django Python Console:</source>
-      <translation>Django Python Konsole:</translation>
+        <location filename="../ConfigurationPage/DjangoPage.ui" line="0"/>
+        <source>Select the Python console type</source>
+        <translation>Wähle den Python Konsolentyp aus</translation>
     </message>
     <message>
-      <location filename="../ConfigurationPage/DjangoPage.ui" line="0" />
-      <source>Select the Python console type</source>
-      <translation>Wähle den Python Konsolentyp aus</translation>
+        <location filename="../ConfigurationPage/DjangoPage.ui" line="0"/>
+        <source>Translations</source>
+        <translation>Übersetzungen</translation>
     </message>
     <message>
-      <location filename="../ConfigurationPage/DjangoPage.ui" line="0" />
-      <source>Translations</source>
-      <translation>Übersetzungen</translation>
+        <location filename="../ConfigurationPage/DjangoPage.ui" line="0"/>
+        <source>Translations Editor</source>
+        <translation>Übersetzungseditor</translation>
     </message>
     <message>
-      <location filename="../ConfigurationPage/DjangoPage.ui" line="0" />
-      <source>Translations Editor</source>
-      <translation>Übersetzungseditor</translation>
+        <location filename="../ConfigurationPage/DjangoPage.ui" line="0"/>
+        <source>Enter the path of an editor to use to do the translations. Leave empty to disable this feature.</source>
+        <translation>Gib den Pfad für einen Editor an, um Übersetzungen zu erstellen. Leer lassen, um dieses Feature abzuschalten.</translation>
     </message>
     <message>
-      <location filename="../ConfigurationPage/DjangoPage.ui" line="0" />
-      <source>Enter the path of an editor to use to do the translations. Leave empty to disable this feature.</source>
-      <translation>Gib den Pfad für einen Editor an, um Übersetzungen zu erstellen. Leer lassen, um dieses Feature abzuschalten.</translation>
-    </message>
-    <message>
-      <location filename="../ConfigurationPage/DjangoPage.ui" line="0" />
-      <source>Select to include fuzzy translations (1.8.0+ only)</source>
-      <translation>Auswählen, um ungenaue Übersetzungen einzubeziehen (nur 1.8.0+)</translation>
+        <location filename="../ConfigurationPage/DjangoPage.ui" line="0"/>
+        <source>Select to include fuzzy translations (1.8.0+ only)</source>
+        <translation>Auswählen, um ungenaue Übersetzungen einzubeziehen (nur 1.8.0+)</translation>
     </message>
     <message>
-      <location filename="../ConfigurationPage/DjangoPage.ui" line="0" />
-      <source>Include Fuzzy Translations</source>
-      <translation>Ungenaue Übersetzungen einbeziehen</translation>
+        <location filename="../ConfigurationPage/DjangoPage.ui" line="0"/>
+        <source>Include Fuzzy Translations</source>
+        <translation>Ungenaue Übersetzungen einbeziehen</translation>
     </message>
     <message>
-      <location filename="../ConfigurationPage/DjangoPage.py" line="42" />
-      <source>All Files (*)</source>
-      <translation>Alle Dateien (*)</translation>
+        <location filename="../ConfigurationPage/DjangoPage.py" line="42"/>
+        <source>All Files (*)</source>
+        <translation>Alle Dateien (*)</translation>
     </message>
     <message>
-      <location filename="../ConfigurationPage/DjangoPage.py" line="77" />
-      <source>Plain Python</source>
-      <translation>Normales Python</translation>
+        <location filename="../ConfigurationPage/DjangoPage.py" line="77"/>
+        <source>Plain Python</source>
+        <translation>Normales Python</translation>
     </message>
     <message>
-      <location filename="../ConfigurationPage/DjangoPage.py" line="78" />
-      <source>IPython</source>
-      <translation>IPython</translation>
+        <location filename="../ConfigurationPage/DjangoPage.py" line="78"/>
+        <source>IPython</source>
+        <translation>IPython</translation>
     </message>
     <message>
-      <location filename="../ConfigurationPage/DjangoPage.py" line="79" />
-      <source>bpython</source>
-      <translation>bpython</translation>
+        <location filename="../ConfigurationPage/DjangoPage.py" line="79"/>
+        <source>bpython</source>
+        <translation>bpython</translation>
     </message>
-  </context>
-  <context>
+</context>
+<context>
     <name>DjangoRunTestServerDataDialog</name>
     <message>
-      <location filename="../DjangoRunTestServerDataDialog.ui" line="0" />
-      <source>testserver Command Options</source>
-      <translation>testserver Kommandozeilenoptionen</translation>
+        <location filename="../DjangoRunTestServerDataDialog.ui" line="0"/>
+        <source>testserver Command Options</source>
+        <translation>testserver Kommandozeilenoptionen</translation>
     </message>
     <message>
-      <location filename="../DjangoRunTestServerDataDialog.ui" line="0" />
-      <source>Enter the list of fixture patterns or the path of a fixture file.</source>
-      <translation>Gib die Liste der Fixturenamen oder den Pfad einer Fixturedatei ein.</translation>
+        <location filename="../DjangoRunTestServerDataDialog.ui" line="0"/>
+        <source>Enter the list of fixture patterns or the path of a fixture file.</source>
+        <translation>Gib die Liste der Fixturenamen oder den Pfad einer Fixturedatei ein.</translation>
     </message>
     <message>
-      <location filename="../DjangoRunTestServerDataDialog.py" line="41" />
-      <source>JSON Files (*.json);;XML Files (*.xml);;</source>
-      <translation>JSON Dateien (*.json);;XML Dateien (*.xml);;</translation>
+        <location filename="../DjangoRunTestServerDataDialog.py" line="41"/>
+        <source>JSON Files (*.json);;XML Files (*.xml);;</source>
+        <translation>JSON Dateien (*.json);;XML Dateien (*.xml);;</translation>
     </message>
     <message>
-      <location filename="../DjangoRunTestServerDataDialog.py" line="45" />
-      <source>YAML Files (*.yaml);;</source>
-      <translation>YAML Dateien (*.yaml);;</translation>
+        <location filename="../DjangoRunTestServerDataDialog.py" line="45"/>
+        <source>YAML Files (*.yaml);;</source>
+        <translation>YAML Dateien (*.yaml);;</translation>
     </message>
     <message>
-      <location filename="../DjangoRunTestServerDataDialog.py" line="46" />
-      <source>All Files (*)</source>
-      <translation>Alle Dateien (*)</translation>
+        <location filename="../DjangoRunTestServerDataDialog.py" line="46"/>
+        <source>All Files (*)</source>
+        <translation>Alle Dateien (*)</translation>
     </message>
-  </context>
-  <context>
+</context>
+<context>
     <name>DjangoSendTestEmailDataDialog</name>
     <message>
-      <location filename="../DjangoSendTestEmailDataDialog.ui" line="0" />
-      <source>sendtestemail Command Options</source>
-      <translation>sendtestemail Kommandozeilenoptionen</translation>
+        <location filename="../DjangoSendTestEmailDataDialog.ui" line="0"/>
+        <source>sendtestemail Command Options</source>
+        <translation>sendtestemail Kommandozeilenoptionen</translation>
     </message>
     <message>
-      <location filename="../DjangoSendTestEmailDataDialog.ui" line="0" />
-      <source>Select to send a test email to the defined managers</source>
-      <translation>Auswählen, um eine Testemail an die definierten Manager zu schicken</translation>
+        <location filename="../DjangoSendTestEmailDataDialog.ui" line="0"/>
+        <source>Select to send a test email to the defined managers</source>
+        <translation>Auswählen, um eine Testemail an die definierten Manager zu schicken</translation>
     </message>
     <message>
-      <location filename="../DjangoSendTestEmailDataDialog.ui" line="0" />
-      <source>Send to Managers</source>
-      <translation>An Manager schicken</translation>
+        <location filename="../DjangoSendTestEmailDataDialog.ui" line="0"/>
+        <source>Send to Managers</source>
+        <translation>An Manager schicken</translation>
     </message>
     <message>
-      <location filename="../DjangoSendTestEmailDataDialog.ui" line="0" />
-      <source>Select to send a test email to the defined administrators</source>
-      <translation>Auswählen, um eine Testemail an die definierten Administratoren zu schicken</translation>
+        <location filename="../DjangoSendTestEmailDataDialog.ui" line="0"/>
+        <source>Select to send a test email to the defined administrators</source>
+        <translation>Auswählen, um eine Testemail an die definierten Administratoren zu schicken</translation>
     </message>
     <message>
-      <location filename="../DjangoSendTestEmailDataDialog.ui" line="0" />
-      <source>Send to Administrators</source>
-      <translation>An Administratoren schicken</translation>
+        <location filename="../DjangoSendTestEmailDataDialog.ui" line="0"/>
+        <source>Send to Administrators</source>
+        <translation>An Administratoren schicken</translation>
     </message>
     <message>
-      <location filename="../DjangoSendTestEmailDataDialog.ui" line="0" />
-      <source>Recipients (one per line):</source>
-      <translation>Empfänger (einer pro Zeile):</translation>
+        <location filename="../DjangoSendTestEmailDataDialog.ui" line="0"/>
+        <source>Recipients (one per line):</source>
+        <translation>Empfänger (einer pro Zeile):</translation>
     </message>
     <message>
-      <location filename="../DjangoSendTestEmailDataDialog.ui" line="0" />
-      <source>Enter email addresses one per line</source>
-      <translation>Gib Emailadressen ein (eine pro Zeile)</translation>
+        <location filename="../DjangoSendTestEmailDataDialog.ui" line="0"/>
+        <source>Enter email addresses one per line</source>
+        <translation>Gib Emailadressen ein (eine pro Zeile)</translation>
     </message>
-  </context>
-  <context>
+</context>
+<context>
     <name>DjangoSquashMigrationSelectionDialog</name>
     <message>
-      <location filename="../DjangoSquashMigrationSelectionDialog.ui" line="0" />
-      <source>Squash Migrations</source>
-      <translation>Migrationen kürzen</translation>
+        <location filename="../DjangoSquashMigrationSelectionDialog.ui" line="0"/>
+        <source>Squash Migrations</source>
+        <translation>Migrationen kürzen</translation>
     </message>
     <message>
-      <location filename="../DjangoSquashMigrationSelectionDialog.ui" line="0" />
-      <source>Application:</source>
-      <translation>Anwendung:</translation>
+        <location filename="../DjangoSquashMigrationSelectionDialog.ui" line="0"/>
+        <source>Application:</source>
+        <translation>Anwendung:</translation>
     </message>
     <message>
-      <location filename="../DjangoSquashMigrationSelectionDialog.ui" line="0" />
-      <source>Select the application</source>
-      <translation>Wähle eine Anwendung aus</translation>
+        <location filename="../DjangoSquashMigrationSelectionDialog.ui" line="0"/>
+        <source>Select the application</source>
+        <translation>Wähle eine Anwendung aus</translation>
     </message>
     <message>
-      <location filename="../DjangoSquashMigrationSelectionDialog.ui" line="0" />
-      <source>Start Migration:</source>
-      <translation>Startmigration:</translation>
+        <location filename="../DjangoSquashMigrationSelectionDialog.ui" line="0"/>
+        <source>Start Migration:</source>
+        <translation>Startmigration:</translation>
     </message>
     <message>
-      <location filename="../DjangoSquashMigrationSelectionDialog.ui" line="0" />
-      <source>Select the start migration (1.9.0+ only)</source>
-      <translation>Wähle die Startmigration aus (nur 1.9.0+)</translation>
+        <location filename="../DjangoSquashMigrationSelectionDialog.ui" line="0"/>
+        <source>Select the start migration (1.9.0+ only)</source>
+        <translation>Wähle die Startmigration aus (nur 1.9.0+)</translation>
     </message>
     <message>
-      <location filename="../DjangoSquashMigrationSelectionDialog.ui" line="0" />
-      <source>End Migration:</source>
-      <translation>Endmigration:</translation>
+        <location filename="../DjangoSquashMigrationSelectionDialog.ui" line="0"/>
+        <source>End Migration:</source>
+        <translation>Endmigration:</translation>
     </message>
     <message>
-      <location filename="../DjangoSquashMigrationSelectionDialog.ui" line="0" />
-      <source>Select a migration</source>
-      <translation>Wähle eine Migration aus</translation>
+        <location filename="../DjangoSquashMigrationSelectionDialog.ui" line="0"/>
+        <source>Select a migration</source>
+        <translation>Wähle eine Migration aus</translation>
     </message>
     <message>
-      <location filename="../DjangoSquashMigrationSelectionDialog.ui" line="0" />
-      <source>Migration Name:</source>
-      <translation>Migrationsname:</translation>
+        <location filename="../DjangoSquashMigrationSelectionDialog.ui" line="0"/>
+        <source>Migration Name:</source>
+        <translation>Migrationsname:</translation>
     </message>
     <message>
-      <location filename="../DjangoSquashMigrationSelectionDialog.ui" line="0" />
-      <source>Enter an optional name for the migration (2.0.0+ only)</source>
-      <translation>Gib einen optionalen Migrationsnamen ein (nur 2.0.0+)</translation>
+        <location filename="../DjangoSquashMigrationSelectionDialog.ui" line="0"/>
+        <source>Enter an optional name for the migration (2.0.0+ only)</source>
+        <translation>Gib einen optionalen Migrationsnamen ein (nur 2.0.0+)</translation>
     </message>
     <message>
-      <location filename="../DjangoSquashMigrationSelectionDialog.ui" line="0" />
-      <source>Select to not optimize the squashed migration</source>
-      <translation>Auswählen, um die Optimierung der verkürzten Migration zu unterdrücken</translation>
+        <location filename="../DjangoSquashMigrationSelectionDialog.ui" line="0"/>
+        <source>Select to not optimize the squashed migration</source>
+        <translation>Auswählen, um die Optimierung der verkürzten Migration zu unterdrücken</translation>
     </message>
     <message>
-      <location filename="../DjangoSquashMigrationSelectionDialog.ui" line="0" />
-      <source>Dont' optimize</source>
-      <translation>Keine Optimierung</translation>
+        <location filename="../DjangoSquashMigrationSelectionDialog.ui" line="0"/>
+        <source>Dont&apos; optimize</source>
+        <translation>Keine Optimierung</translation>
     </message>
-  </context>
-  <context>
+</context>
+<context>
     <name>DjangoTestDataDialog</name>
     <message>
-      <location filename="../DjangoTestDataDialog.ui" line="0" />
-      <source>Django Test Data</source>
-      <translation>Django Testdaten</translation>
+        <location filename="../DjangoTestDataDialog.ui" line="0"/>
+        <source>Django Test Data</source>
+        <translation>Django Testdaten</translation>
     </message>
     <message>
-      <location filename="../DjangoTestDataDialog.ui" line="0" />
-      <source>Test Labels:</source>
-      <translation>Testlabels:</translation>
+        <location filename="../DjangoTestDataDialog.ui" line="0"/>
+        <source>Test Labels:</source>
+        <translation>Testlabels:</translation>
     </message>
     <message>
-      <location filename="../DjangoTestDataDialog.ui" line="0" />
-      <source>Enter the tests to be performed separated by space</source>
-      <translation>Gib die auszuführenden Tests durch Leerzeichen getrennt ein</translation>
+        <location filename="../DjangoTestDataDialog.ui" line="0"/>
+        <source>Enter the tests to be performed separated by space</source>
+        <translation>Gib die auszuführenden Tests durch Leerzeichen getrennt ein</translation>
     </message>
     <message>
-      <location filename="../DjangoTestDataDialog.ui" line="0" />
-      <source>Test File Pattern:</source>
-      <translation>Dateimuster für Testdateien:</translation>
+        <location filename="../DjangoTestDataDialog.ui" line="0"/>
+        <source>Test File Pattern:</source>
+        <translation>Dateimuster für Testdateien:</translation>
+    </message>
+    <message>
+        <location filename="../DjangoTestDataDialog.ui" line="0"/>
+        <source>Enter the test file pattern</source>
+        <translation>Gib ein Dateimuster für die Testdateien ein</translation>
     </message>
     <message>
-      <location filename="../DjangoTestDataDialog.ui" line="0" />
-      <source>Enter the test file pattern</source>
-      <translation>Gib ein Dateimuster für die Testdateien ein</translation>
+        <location filename="../DjangoTestDataDialog.ui" line="0"/>
+        <source>Tags:</source>
+        <translation>Tags:</translation>
     </message>
     <message>
-      <location filename="../DjangoTestDataDialog.ui" line="0" />
-      <source>Tags:</source>
-      <translation>Tags:</translation>
+        <location filename="../DjangoTestDataDialog.ui" line="0"/>
+        <source>Enter the test tags to be run separated by space</source>
+        <translation>Gib die Tags auszuführender Tests durch Leerzeichen getrennt ein</translation>
     </message>
     <message>
-      <location filename="../DjangoTestDataDialog.ui" line="0" />
-      <source>Enter the test tags to be run separated by space</source>
-      <translation>Gib die Tags auszuführender Tests durch Leerzeichen getrennt ein</translation>
+        <location filename="../DjangoTestDataDialog.ui" line="0"/>
+        <source>Exclude Tags:</source>
+        <translation>Ausnahmetags:</translation>
     </message>
     <message>
-      <location filename="../DjangoTestDataDialog.ui" line="0" />
-      <source>Exclude Tags:</source>
-      <translation>Ausnahmetags:</translation>
+        <location filename="../DjangoTestDataDialog.ui" line="0"/>
+        <source>Enter the test tags to be skipped separated by space</source>
+        <translation>Gib die Tags nicht auszuführender Tests durch Leerzeichen getrennt ein</translation>
     </message>
     <message>
-      <location filename="../DjangoTestDataDialog.ui" line="0" />
-      <source>Enter the test tags to be skipped separated by space</source>
-      <translation>Gib die Tags nicht auszuführender Tests durch Leerzeichen getrennt ein</translation>
+        <location filename="../DjangoTestDataDialog.ui" line="0"/>
+        <source>Select to keep the test database</source>
+        <translation>Auswählen, um die Testdatenbank nicht zu löschen</translation>
     </message>
     <message>
-      <location filename="../DjangoTestDataDialog.ui" line="0" />
-      <source>Select to keep the test database</source>
-      <translation>Auswählen, um die Testdatenbank nicht zu löschen</translation>
+        <location filename="../DjangoTestDataDialog.ui" line="0"/>
+        <source>Keep Test Database</source>
+        <translation>Testdatenbank nicht löschen</translation>
     </message>
     <message>
-      <location filename="../DjangoTestDataDialog.ui" line="0" />
-      <source>Keep Test Database</source>
-      <translation>Testdatenbank nicht löschen</translation>
+        <location filename="../DjangoTestDataDialog.ui" line="0"/>
+        <source>Select to run the tests in reverse order</source>
+        <translation>Auswählen, um Tests in umgekehrter Reihenfolge auszuführen</translation>
     </message>
     <message>
-      <location filename="../DjangoTestDataDialog.ui" line="0" />
-      <source>Select to run the tests in reverse order</source>
-      <translation>Auswählen, um Tests in umgekehrter Reihenfolge auszuführen</translation>
+        <location filename="../DjangoTestDataDialog.ui" line="0"/>
+        <source>Run Tests in Reverse Order</source>
+        <translation>Tests in umgekehrter Reihenfolge ausführen</translation>
     </message>
-    <message>
-      <location filename="../DjangoTestDataDialog.ui" line="0" />
-      <source>Run Tests in Reverse Order</source>
-      <translation>Tests in umgekehrter Reihenfolge ausführen</translation>
-    </message>
-  </context>
-  <context>
+</context>
+<context>
     <name>Project</name>
     <message>
-      <location filename="../Project.py" line="180" />
-      <source>Current Project</source>
-      <translation>Aktuelles Projekt</translation>
+        <location filename="../Project.py" line="181"/>
+        <source>Current Project</source>
+        <translation>Aktuelles Projekt</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="182" />
-      <source>Selects the current project</source>
-      <translation>Wählt das aktuelle Projekt aus</translation>
+        <location filename="../Project.py" line="183"/>
+        <source>Selects the current project</source>
+        <translation>Wählt das aktuelle Projekt aus</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="184" />
-      <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>
+        <location filename="../Project.py" line="185"/>
+        <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="200"/>
+        <source>Start Project</source>
+        <translation>Project starten</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="199" />
-      <source>Start Project</source>
-      <translation>Project starten</translation>
+        <location filename="../Project.py" line="201"/>
+        <source>Start &amp;Project</source>
+        <translation>&amp;Project starten</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="200" />
-      <source>Start &amp;Project</source>
-      <translation>&amp;Project starten</translation>
+        <location filename="../Project.py" line="207"/>
+        <source>Starts a new Django project</source>
+        <translation>Startet ein neues Django Projekt</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="206" />
-      <source>Starts a new Django project</source>
-      <translation>Startet ein neues Django Projekt</translation>
+        <location filename="../Project.py" line="209"/>
+        <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="208" />
-      <source>&lt;b&gt;Start Project&lt;/b&gt;&lt;p&gt;Starts a new Django project using "django-admin.py startproject".&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Project starten&lt;/b&gt;&lt;p&gt;Started ein neues Django Projekt mittels "django-admin.py startproject".&lt;/p&gt;</translation>
+        <location filename="../Project.py" line="219"/>
+        <source>Start Application (global)</source>
+        <translation>Anwendung starten (global)</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="218" />
-      <source>Start Application (global)</source>
-      <translation>Anwendung starten (global)</translation>
+        <location filename="../Project.py" line="220"/>
+        <source>Start Application (&amp;global)</source>
+        <translation>Anwendung starten (&amp;global)</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="219" />
-      <source>Start Application (&amp;global)</source>
-      <translation>Anwendung starten (&amp;global)</translation>
+        <location filename="../Project.py" line="227"/>
+        <source>Starts a new global Django application</source>
+        <translation>Startet eine neue globale Django Anwendung</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="226" />
-      <source>Starts a new global Django application</source>
-      <translation>Startet eine neue globale Django Anwendung</translation>
+        <location filename="../Project.py" line="230"/>
+        <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="229" />
-      <source>&lt;b&gt;Start Application (global)&lt;/b&gt;&lt;p&gt;Starts a new global Django application using "django-admin.py startapp".&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Anwendung starten (global)&lt;/b&gt;&lt;p&gt;Startet eine neue globale Django Anwendung mittels "django-admin.py startapp".&lt;/p&gt;</translation>
+        <location filename="../Project.py" line="240"/>
+        <source>Start Application (local)</source>
+        <translation>Anwendung starten (lokal)</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="239" />
-      <source>Start Application (local)</source>
-      <translation>Anwendung starten (lokal)</translation>
+        <location filename="../Project.py" line="241"/>
+        <source>Start Application (&amp;local)</source>
+        <translation>Anwendung starten (&amp;lokal)</translation>
+    </message>
+    <message>
+        <location filename="../Project.py" line="248"/>
+        <source>Starts a new local Django application</source>
+        <translation>Startet eine neue lokale Django Anwendung</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="240" />
-      <source>Start Application (&amp;local)</source>
-      <translation>Anwendung starten (&amp;lokal)</translation>
+        <location filename="../Project.py" line="251"/>
+        <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="247" />
-      <source>Starts a new local Django application</source>
-      <translation>Startet eine neue lokale Django Anwendung</translation>
+        <location filename="../Project.py" line="265"/>
+        <source>Run Server</source>
+        <translation>Server starten</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="250" />
-      <source>&lt;b&gt;Start Application (local)&lt;/b&gt;&lt;p&gt;Starts a new local Django application using "manage.py startapp".&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Anwendung starten (lokal)&lt;/b&gt;&lt;p&gt;Startet eine neue lokale Django Anwendung mittels "manage.py startapp".&lt;/p&gt;</translation>
+        <location filename="../Project.py" line="266"/>
+        <source>Run &amp;Server</source>
+        <translation>&amp;Server starten</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="264" />
-      <source>Run Server</source>
-      <translation>Server starten</translation>
+        <location filename="../Project.py" line="272"/>
+        <source>Starts the Django Web server</source>
+        <translation>Startet den Django Web-Server</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="265" />
-      <source>Run &amp;Server</source>
-      <translation>&amp;Server starten</translation>
+        <location filename="../Project.py" line="274"/>
+        <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="271" />
-      <source>Starts the Django Web server</source>
-      <translation>Startet den Django Web-Server</translation>
+        <location filename="../Project.py" line="2321"/>
+        <location filename="../Project.py" line="284"/>
+        <source>Run Web-Browser</source>
+        <translation>Web-Browser starten</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="273" />
-      <source>&lt;b&gt;Run Server&lt;/b&gt;&lt;p&gt;Starts the Django Web server using "manage.py runserver".&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Server starten&lt;/b&gt;&lt;p&gt;Startet den Django Web-Server mittels "manage.py runserve".&lt;/p&gt;</translation>
+        <location filename="../Project.py" line="285"/>
+        <source>Run &amp;Web-Browser</source>
+        <translation>Web-&amp;Browser starten</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="2266" />
-      <location filename="../Project.py" line="283" />
-      <source>Run Web-Browser</source>
-      <translation>Web-Browser starten</translation>
+        <location filename="../Project.py" line="292"/>
+        <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="298"/>
+        <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="284" />
-      <source>Run &amp;Web-Browser</source>
-      <translation>Web-&amp;Browser starten</translation>
+        <location filename="../Project.py" line="3034"/>
+        <location filename="../Project.py" line="312"/>
+        <source>Create Cache Tables</source>
+        <translation>Erzeuge Cache Tabellen</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="291" />
-      <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="297" />
-      <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>
+        <location filename="../Project.py" line="313"/>
+        <source>C&amp;reate Cache Tables</source>
+        <translation>Erzeuge &amp;Cache Tabellen</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="2963" />
-      <location filename="../Project.py" line="311" />
-      <source>Create Cache Tables</source>
-      <translation>Erzeuge Cache Tabellen</translation>
+        <location filename="../Project.py" line="320"/>
+        <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="312" />
-      <source>C&amp;reate Cache Tables</source>
-      <translation>Erzeuge &amp;Cache Tabellen</translation>
+        <location filename="../Project.py" line="323"/>
+        <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="319" />
-      <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>
+        <location filename="../Project.py" line="337"/>
+        <source>Help</source>
+        <translation>Hilfe</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="322" />
-      <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>
+        <location filename="../Project.py" line="337"/>
+        <source>&amp;Help</source>
+        <translation>&amp;Hilfe</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="336" />
-      <source>Help</source>
-      <translation>Hilfe</translation>
+        <location filename="../Project.py" line="339"/>
+        <source>Shows the Django help index</source>
+        <translation>Zeigt den Django Hilfe Index an</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="336" />
-      <source>&amp;Help</source>
-      <translation>&amp;Hilfe</translation>
+        <location filename="../Project.py" line="341"/>
+        <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="338" />
-      <source>Shows the Django help index</source>
-      <translation>Zeigt den Django Hilfe Index an</translation>
+        <location filename="../Project.py" line="1635"/>
+        <location filename="../Project.py" line="351"/>
+        <source>About Django</source>
+        <translation>Über Django</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="340" />
-      <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>
+        <location filename="../Project.py" line="352"/>
+        <source>About D&amp;jango</source>
+        <translation>Über D&amp;jango</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="1585" />
-      <location filename="../Project.py" line="350" />
-      <source>About Django</source>
-      <translation>Über Django</translation>
+        <location filename="../Project.py" line="358"/>
+        <source>Shows some information about Django</source>
+        <translation>Zeigt Informationen über Django</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="351" />
-      <source>About D&amp;jango</source>
-      <translation>Über D&amp;jango</translation>
+        <location filename="../Project.py" line="360"/>
+        <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="357" />
-      <source>Shows some information about Django</source>
-      <translation>Zeigt Informationen über Django</translation>
+        <location filename="../Project.py" line="3774"/>
+        <location filename="../Project.py" line="374"/>
+        <location filename="../Project.py" line="373"/>
+        <source>Check Project</source>
+        <translation>Projekt prüfen</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="359" />
-      <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>
+        <location filename="../Project.py" line="381"/>
+        <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="3680" />
-      <location filename="../Project.py" line="373" />
-      <location filename="../Project.py" line="372" />
-      <source>Check Project</source>
-      <translation>Projekt prüfen</translation>
+        <location filename="../Project.py" line="384"/>
+        <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="380" />
-      <source>Inspects the Django project for common problems</source>
-      <translation>Prüft das Django Projekt auf übliche Probleme</translation>
+        <location filename="../Project.py" line="405"/>
+        <source>Current Database</source>
+        <translation>Aktuelle Datenbank</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="383" />
-      <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>
+        <location filename="../Project.py" line="407"/>
+        <source>Selects the current database</source>
+        <translation>Wählt die aktuelle Datenbank</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="404" />
-      <source>Current Database</source>
-      <translation>Aktuelle Datenbank</translation>
+        <location filename="../Project.py" line="409"/>
+        <source>&lt;b&gt;Current Database&lt;/b&gt;&lt;p&gt;Selects the database name to be used by all database actions. An empty database name indicates to use the default name.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Aktuelle Datenbank&lt;/b&gt;&lt;p&gt;Dies wählt den Datenbanknamen aus, der für alle Datenbankoperationen verwendet wird. Ein leerer Datenbankname steht für die Verwendung des Standardnamens.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../Project.py" line="421"/>
+        <source>Introspect</source>
+        <translation>Untersuchen</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="406" />
-      <source>Selects the current database</source>
-      <translation>Wählt die aktuelle Datenbank</translation>
+        <location filename="../Project.py" line="422"/>
+        <source>&amp;Introspect</source>
+        <translation>&amp;Untersuchen</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="408" />
-      <source>&lt;b&gt;Current Database&lt;/b&gt;&lt;p&gt;Selects the database name to be used by all database actions. An empty database name indicates to use the default name.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Aktuelle Datenbank&lt;/b&gt;&lt;p&gt;Dies wählt den Datenbanknamen aus, der für alle Datenbankoperationen verwendet wird. Ein leerer Datenbankname steht für die Verwendung des Standardnamens.&lt;/p&gt;</translation>
+        <location filename="../Project.py" line="429"/>
+        <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="420" />
-      <source>Introspect</source>
-      <translation>Untersuchen</translation>
+        <location filename="../Project.py" line="432"/>
+        <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="421" />
-      <source>&amp;Introspect</source>
-      <translation>&amp;Untersuchen</translation>
+        <location filename="../Project.py" line="442"/>
+        <source>Flush</source>
+        <translation>Neuinitialisierung</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="428" />
-      <source>Introspects the database tables and outputs a Django model module</source>
-      <translation>Untersucht die Datenbanktabellen und gibt ein Django Modellmodul aus</translation>
+        <location filename="../Project.py" line="442"/>
+        <source>&amp;Flush</source>
+        <translation>&amp;Neuinitialisierung</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="431" />
-      <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>
+        <location filename="../Project.py" line="445"/>
+        <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="441" />
-      <source>Flush</source>
-      <translation>Neuinitialisierung</translation>
+        <location filename="../Project.py" line="451"/>
+        <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="441" />
-      <source>&amp;Flush</source>
-      <translation>&amp;Neuinitialisierung</translation>
+        <location filename="../Project.py" line="461"/>
+        <source>Start Client Console</source>
+        <translation>Starte Datenbank Konsole</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="444" />
-      <source>Returns all database tables to the state just after their installation</source>
-      <translation>Setzt alle Datenbanktabelle in ihren Ursprungszustand zurück</translation>
+        <location filename="../Project.py" line="462"/>
+        <source>Start &amp;Client Console</source>
+        <translation>Starte &amp;Datenbank Konsole</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="450" />
-      <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>
+        <location filename="../Project.py" line="469"/>
+        <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="460" />
-      <source>Start Client Console</source>
-      <translation>Starte Datenbank Konsole</translation>
+        <location filename="../Project.py" line="472"/>
+        <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="461" />
-      <source>Start &amp;Client Console</source>
-      <translation>Starte &amp;Datenbank Konsole</translation>
+        <location filename="../Project.py" line="2571"/>
+        <location filename="../Project.py" line="2470"/>
+        <location filename="../Project.py" line="485"/>
+        <source>Flush Database</source>
+        <translation>Datenbank neu initialisieren</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="468" />
-      <source>Starts a console window for the database client</source>
-      <translation>Started ein Konsolenfenster für den Datenbankklienten</translation>
+        <location filename="../Project.py" line="486"/>
+        <source>&amp;Flush Database</source>
+        <translation>&amp;Datenbank neu initialisieren</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="471" />
-      <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>
+        <location filename="../Project.py" line="493"/>
+        <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="499"/>
+        <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="2512" />
-      <location filename="../Project.py" line="2415" />
-      <location filename="../Project.py" line="484" />
-      <source>Flush Database</source>
-      <translation>Datenbank neu initialisieren</translation>
+        <location filename="../Project.py" line="2578"/>
+        <location filename="../Project.py" line="509"/>
+        <source>Reset Sequences</source>
+        <translation>Sequenzen zurücksetzen</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="485" />
-      <source>&amp;Flush Database</source>
-      <translation>&amp;Datenbank neu initialisieren</translation>
+        <location filename="../Project.py" line="510"/>
+        <source>Reset &amp;Sequences</source>
+        <translation>Se&amp;quenzen zurücksetzen</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="492" />
-      <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="498" />
-      <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>
+        <location filename="../Project.py" line="517"/>
+        <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="2519" />
-      <location filename="../Project.py" line="508" />
-      <source>Reset Sequences</source>
-      <translation>Sequenzen zurücksetzen</translation>
+        <location filename="../Project.py" line="523"/>
+        <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="509" />
-      <source>Reset &amp;Sequences</source>
-      <translation>Se&amp;quenzen zurücksetzen</translation>
+        <location filename="../Project.py" line="533"/>
+        <source>Apply Migration</source>
+        <translation>Migration anwenden</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="516" />
-      <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>
+        <location filename="../Project.py" line="534"/>
+        <source>&amp;Apply Migration</source>
+        <translation>Migration &amp;anwenden</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="522" />
-      <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>
+        <location filename="../Project.py" line="541"/>
+        <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="532" />
-      <source>Apply Migration</source>
-      <translation>Migration anwenden</translation>
+        <location filename="../Project.py" line="544"/>
+        <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="533" />
-      <source>&amp;Apply Migration</source>
-      <translation>Migration &amp;anwenden</translation>
+        <location filename="../Project.py" line="554"/>
+        <source>Unapply Migration</source>
+        <translation>Migration rückgängig machen</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="540" />
-      <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>
+        <location filename="../Project.py" line="555"/>
+        <source>&amp;Unapply Migration</source>
+        <translation>Migration &amp;rückgängig machen</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="543" />
-      <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>
+        <location filename="../Project.py" line="562"/>
+        <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="553" />
-      <source>Unapply Migration</source>
-      <translation>Migration rückgängig machen</translation>
+        <location filename="../Project.py" line="567"/>
+        <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="554" />
-      <source>&amp;Unapply Migration</source>
-      <translation>Migration &amp;rückgängig machen</translation>
-    </message>
-    <message>
-      <location filename="../Project.py" line="561" />
-      <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>
+        <location filename="../Project.py" line="2932"/>
+        <location filename="../Project.py" line="583"/>
+        <source>Diff Settings</source>
+        <translation>Settings Unterschiede</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="566" />
-      <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>
+        <location filename="../Project.py" line="584"/>
+        <source>&amp;Diff Settings</source>
+        <translation>Settings &amp;Unterschiede</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="2862" />
-      <location filename="../Project.py" line="582" />
-      <source>Diff Settings</source>
-      <translation>Settings Unterschiede</translation>
+        <location filename="../Project.py" line="591"/>
+        <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="594"/>
+        <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="583" />
-      <source>&amp;Diff Settings</source>
-      <translation>Settings &amp;Unterschiede</translation>
+        <location filename="../Project.py" line="603"/>
+        <source>Start Python Console</source>
+        <translation>Starte Python Konsole</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="590" />
-      <source>Shows the modification made to the settings</source>
-      <translation>Zeigt die Änderungen gegenüber dem Standard</translation>
+        <location filename="../Project.py" line="604"/>
+        <source>Start &amp;Python Console</source>
+        <translation>Starte &amp;Python Konsole</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="593" />
-      <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>
+        <location filename="../Project.py" line="611"/>
+        <source>Starts a Python interactive interpreter</source>
+        <translation>Startet einen interaktiven Python Interpreter</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="602" />
-      <source>Start Python Console</source>
-      <translation>Starte Python Konsole</translation>
+        <location filename="../Project.py" line="614"/>
+        <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="603" />
-      <source>Start &amp;Python Console</source>
-      <translation>Starte &amp;Python Konsole</translation>
+        <location filename="../Project.py" line="2994"/>
+        <location filename="../Project.py" line="623"/>
+        <source>Send Test Email</source>
+        <translation>Testemail senden</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="610" />
-      <source>Starts a Python interactive interpreter</source>
-      <translation>Startet einen interaktiven Python Interpreter</translation>
+        <location filename="../Project.py" line="624"/>
+        <source>Send Test &amp;Email</source>
+        <translation>Test&amp;email senden</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="613" />
-      <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>
+        <location filename="../Project.py" line="630"/>
+        <source>Send a test email through Django</source>
+        <translation>Sendet eine Testemail via Django</translation>
+    </message>
+    <message>
+        <location filename="../Project.py" line="632"/>
+        <source>&lt;b&gt;Send Test Email&lt;/b&gt;&lt;p&gt;Sends a test email to confirm email sending through Django is working.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Testemail senden&lt;/b&gt;&lt;p&gt;Verschickt eine Testemail zur Prüfung, ob der Emailversand via Django arbeitet.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="2924" />
-      <location filename="../Project.py" line="622" />
-      <source>Send Test Email</source>
-      <translation>Testemail senden</translation>
+        <location filename="../Project.py" line="3067"/>
+        <location filename="../Project.py" line="646"/>
+        <source>Dump Data</source>
+        <translation>Daten sichern</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="623" />
-      <source>Send Test &amp;Email</source>
-      <translation>Test&amp;email senden</translation>
+        <location filename="../Project.py" line="647"/>
+        <source>&amp;Dump Data</source>
+        <translation>Daten &amp;sichern</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="629" />
-      <source>Send a test email through Django</source>
-      <translation>Sendet eine Testemail via Django</translation>
-    </message>
-    <message>
-      <location filename="../Project.py" line="631" />
-      <source>&lt;b&gt;Send Test Email&lt;/b&gt;&lt;p&gt;Sends a test email to confirm email sending through Django is working.&lt;/p&gt;</source>
-      <translation>&lt;b&gt;Testemail senden&lt;/b&gt;&lt;p&gt;Verschickt eine Testemail zur Prüfung, ob der Emailversand via Django arbeitet.&lt;/p&gt;</translation>
+        <location filename="../Project.py" line="653"/>
+        <source>Dump the database data to a fixture</source>
+        <translation>Schreibt die Datenbank in ein Fixture</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="2994" />
-      <location filename="../Project.py" line="645" />
-      <source>Dump Data</source>
-      <translation>Daten sichern</translation>
+        <location filename="../Project.py" line="655"/>
+        <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="646" />
-      <source>&amp;Dump Data</source>
-      <translation>Daten &amp;sichern</translation>
+        <location filename="../Project.py" line="3114"/>
+        <location filename="../Project.py" line="661"/>
+        <source>Load Data</source>
+        <translation>Daten laden</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="652" />
-      <source>Dump the database data to a fixture</source>
-      <translation>Schreibt die Datenbank in ein Fixture</translation>
+        <location filename="../Project.py" line="662"/>
+        <source>&amp;Load Data</source>
+        <translation>Daten &amp;laden</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="654" />
-      <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>
+        <location filename="../Project.py" line="668"/>
+        <source>Load data from fixture files</source>
+        <translation>Lädt Daten aus Fixturedateien</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="3037" />
-      <location filename="../Project.py" line="660" />
-      <source>Load Data</source>
-      <translation>Daten laden</translation>
+        <location filename="../Project.py" line="670"/>
+        <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="676"/>
+        <source>Run Testsuite</source>
+        <translation>Testsuite starten</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="661" />
-      <source>&amp;Load Data</source>
-      <translation>Daten &amp;laden</translation>
+        <location filename="../Project.py" line="677"/>
+        <source>Run &amp;Testsuite</source>
+        <translation>&amp;Testsuite starten</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="667" />
-      <source>Load data from fixture files</source>
-      <translation>Lädt Daten aus Fixturedateien</translation>
+        <location filename="../Project.py" line="684"/>
+        <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="669" />
-      <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>
+        <location filename="../Project.py" line="687"/>
+        <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="675" />
-      <source>Run Testsuite</source>
-      <translation>Testsuite starten</translation>
+        <location filename="../Project.py" line="697"/>
+        <location filename="../Project.py" line="696"/>
+        <source>Run Testsuite (-Wall)</source>
+        <translation>Testsuite starten (-Wall)</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="676" />
-      <source>Run &amp;Testsuite</source>
-      <translation>&amp;Testsuite starten</translation>
+        <location filename="../Project.py" line="704"/>
+        <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="683" />
-      <source>Run the test suite for applications or the whole site</source>
-      <translation>Startet die Testsuite für Anwendungen oder die Site</translation>
+        <location filename="../Project.py" line="710"/>
+        <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>
     <message>
-      <location filename="../Project.py" line="686" />
-      <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>
+        <location filename="../Project.py" line="722"/>
+        <source>Run Testserver</source>
+        <translation>Testserver starten</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="696" />
-      <location filename="../Project.py" line="695" />
-      <source>Run Testsuite (-Wall)</source>
-      <translation>Testsuite starten (-Wall)</translation>
+        <location filename="../Project.py" line="723"/>
+        <source>Run Test&amp;server</source>
+        <translation>Test&amp;server starten</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="703" />
-      <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>
+        <location filename="../Project.py" line="730"/>
+        <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="709" />
-      <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>
+        <location filename="../Project.py" line="733"/>
+        <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="721" />
-      <source>Run Testserver</source>
-      <translation>Testserver starten</translation>
+        <location filename="../Project.py" line="3275"/>
+        <location filename="../Project.py" line="747"/>
+        <source>Change Password</source>
+        <translation>Kennwort ändern</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="722" />
-      <source>Run Test&amp;server</source>
-      <translation>Test&amp;server starten</translation>
+        <location filename="../Project.py" line="748"/>
+        <source>Change &amp;Password</source>
+        <translation>&amp;Kennwort ändern</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="729" />
-      <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>
+        <location filename="../Project.py" line="754"/>
+        <source>Change the password of a user</source>
+        <translation>Ändert das Kennwort eines Nutzers</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="732" />
-      <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>
+        <location filename="../Project.py" line="756"/>
+        <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="3198" />
-      <location filename="../Project.py" line="746" />
-      <source>Change Password</source>
-      <translation>Kennwort ändern</translation>
+        <location filename="../Project.py" line="765"/>
+        <source>Create Superuser</source>
+        <translation>Superuser anlegen</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="747" />
-      <source>Change &amp;Password</source>
-      <translation>&amp;Kennwort ändern</translation>
+        <location filename="../Project.py" line="766"/>
+        <source>Create &amp;Superuser</source>
+        <translation>&amp;Superuser anlegen</translation>
+    </message>
+    <message>
+        <location filename="../Project.py" line="772"/>
+        <source>Create a superuser account</source>
+        <translation>Legt eine Superuser Kennung an</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="753" />
-      <source>Change the password of a user</source>
-      <translation>Ändert das Kennwort eines Nutzers</translation>
+        <location filename="../Project.py" line="774"/>
+        <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="755" />
-      <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="764" />
-      <source>Create Superuser</source>
-      <translation>Superuser anlegen</translation>
+        <location filename="../Project.py" line="3329"/>
+        <location filename="../Project.py" line="787"/>
+        <source>Clear Sessions</source>
+        <translation>Sessions löschen</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="765" />
-      <source>Create &amp;Superuser</source>
-      <translation>&amp;Superuser anlegen</translation>
+        <location filename="../Project.py" line="788"/>
+        <source>Clear &amp;Sessions</source>
+        <translation>&amp;Sessions löschen</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="771" />
-      <source>Create a superuser account</source>
-      <translation>Legt eine Superuser Kennung an</translation>
-    </message>
-    <message>
-      <location filename="../Project.py" line="773" />
-      <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>
+        <location filename="../Project.py" line="794"/>
+        <source>Clear expired sessions</source>
+        <translation>Löscht abgelaufene Sessions</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="3252" />
-      <location filename="../Project.py" line="786" />
-      <source>Clear Sessions</source>
-      <translation>Sessions löschen</translation>
+        <location filename="../Project.py" line="796"/>
+        <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="787" />
-      <source>Clear &amp;Sessions</source>
-      <translation>&amp;Sessions löschen</translation>
+        <location filename="../Project.py" line="809"/>
+        <source>Show Migrations</source>
+        <translation>Migrationen anzeigen</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="793" />
-      <source>Clear expired sessions</source>
-      <translation>Löscht abgelaufene Sessions</translation>
+        <location filename="../Project.py" line="810"/>
+        <source>&amp;Show Migrations</source>
+        <translation>Migrationen an&amp;zeigen</translation>
+    </message>
+    <message>
+        <location filename="../Project.py" line="817"/>
+        <source>Show a list of available migrations</source>
+        <translation>Zeigt eine Liste verfügbarer Migrationen</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="795" />
-      <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>
+        <location filename="../Project.py" line="820"/>
+        <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="808" />
-      <source>Show Migrations</source>
-      <translation>Migrationen anzeigen</translation>
+        <location filename="../Project.py" line="830"/>
+        <source>Show Migrations Plan</source>
+        <translation>Migrationsplan anzeigen</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="809" />
-      <source>&amp;Show Migrations</source>
-      <translation>Migrationen an&amp;zeigen</translation>
+        <location filename="../Project.py" line="831"/>
+        <source>Show Migrations &amp;Plan</source>
+        <translation>Migrations&amp;plan anzeigen</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="816" />
-      <source>Show a list of available migrations</source>
-      <translation>Zeigt eine Liste verfügbarer Migrationen</translation>
+        <location filename="../Project.py" line="838"/>
+        <source>Show a list with the migrations plan</source>
+        <translation>Zeigt eine Liste mit dem Migrationsplan</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="819" />
-      <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>
+        <location filename="../Project.py" line="841"/>
+        <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="829" />
-      <source>Show Migrations Plan</source>
-      <translation>Migrationsplan anzeigen</translation>
+        <location filename="../Project.py" line="851"/>
+        <source>Apply All Migrations</source>
+        <translation>Alle Migrationen anwenden</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="830" />
-      <source>Show Migrations &amp;Plan</source>
-      <translation>Migrations&amp;plan anzeigen</translation>
+        <location filename="../Project.py" line="852"/>
+        <source>&amp;Apply All Migrations</source>
+        <translation>Alle Migrationen &amp;anwenden</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="837" />
-      <source>Show a list with the migrations plan</source>
-      <translation>Zeigt eine Liste mit dem Migrationsplan</translation>
+        <location filename="../Project.py" line="858"/>
+        <source>Apply all available migrations</source>
+        <translation>Alle verfügbaren Migrationen anwenden</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="840" />
-      <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>
+        <location filename="../Project.py" line="860"/>
+        <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="850" />
-      <source>Apply All Migrations</source>
-      <translation>Alle Migrationen anwenden</translation>
+        <location filename="../Project.py" line="2696"/>
+        <location filename="../Project.py" line="870"/>
+        <location filename="../Project.py" line="869"/>
+        <source>Apply Selected Migrations</source>
+        <translation>Ausgewählte Migrationen anwenden</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="851" />
-      <source>&amp;Apply All Migrations</source>
-      <translation>Alle Migrationen &amp;anwenden</translation>
+        <location filename="../Project.py" line="876"/>
+        <source>Apply selected migrations</source>
+        <translation>Ausgewählte Migrationen anwenden</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="857" />
-      <source>Apply all available migrations</source>
-      <translation>Alle verfügbaren Migrationen anwenden</translation>
+        <location filename="../Project.py" line="878"/>
+        <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="859" />
-      <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>
+        <location filename="../Project.py" line="2758"/>
+        <location filename="../Project.py" line="2751"/>
+        <location filename="../Project.py" line="2718"/>
+        <location filename="../Project.py" line="888"/>
+        <source>Unapply Migrations</source>
+        <translation>Migrationen rückgängig machen</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="2630" />
-      <location filename="../Project.py" line="869" />
-      <location filename="../Project.py" line="868" />
-      <source>Apply Selected Migrations</source>
-      <translation>Ausgewählte Migrationen anwenden</translation>
+        <location filename="../Project.py" line="889"/>
+        <source>&amp;Unapply Migrations</source>
+        <translation>Migrationen &amp;rückgängig machen</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="875" />
-      <source>Apply selected migrations</source>
-      <translation>Ausgewählte Migrationen anwenden</translation>
+        <location filename="../Project.py" line="895"/>
+        <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="897"/>
+        <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="877" />
-      <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>
+        <location filename="../Project.py" line="2845"/>
+        <location filename="../Project.py" line="907"/>
+        <source>Make Migrations</source>
+        <translation>Migrationen generieren</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="2690" />
-      <location filename="../Project.py" line="2683" />
-      <location filename="../Project.py" line="2650" />
-      <location filename="../Project.py" line="887" />
-      <source>Unapply Migrations</source>
-      <translation>Migrationen rückgängig machen</translation>
+        <location filename="../Project.py" line="908"/>
+        <source>&amp;Make Migrations</source>
+        <translation>Migrationen &amp;generieren</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="888" />
-      <source>&amp;Unapply Migrations</source>
-      <translation>Migrationen &amp;rückgängig machen</translation>
+        <location filename="../Project.py" line="915"/>
+        <source>Generate migrations for the project</source>
+        <translation>Generiert Migrationen für das Projekt</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="894" />
-      <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="896" />
-      <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>
+        <location filename="../Project.py" line="918"/>
+        <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="2777" />
-      <location filename="../Project.py" line="906" />
-      <source>Make Migrations</source>
-      <translation>Migrationen generieren</translation>
+        <location filename="../Project.py" line="2896"/>
+        <location filename="../Project.py" line="2885"/>
+        <location filename="../Project.py" line="927"/>
+        <source>Squash Migrations</source>
+        <translation>Migrationen kürzen</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="907" />
-      <source>&amp;Make Migrations</source>
-      <translation>Migrationen &amp;generieren</translation>
+        <location filename="../Project.py" line="928"/>
+        <source>S&amp;quash Migrations</source>
+        <translation>Migrationen &amp;kürzen</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="914" />
-      <source>Generate migrations for the project</source>
-      <translation>Generiert Migrationen für das Projekt</translation>
+        <location filename="../Project.py" line="935"/>
+        <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="917" />
-      <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>
+        <location filename="../Project.py" line="938"/>
+        <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="2826" />
-      <location filename="../Project.py" line="2817" />
-      <location filename="../Project.py" line="926" />
-      <source>Squash Migrations</source>
-      <translation>Migrationen kürzen</translation>
+        <location filename="../Project.py" line="956"/>
+        <source>D&amp;jango</source>
+        <translation>D&amp;jango</translation>
+    </message>
+    <message>
+        <location filename="../Project.py" line="998"/>
+        <source>&amp;Database</source>
+        <translation>&amp;Datenbank</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="927" />
-      <source>S&amp;quash Migrations</source>
-      <translation>Migrationen &amp;kürzen</translation>
+        <location filename="../Project.py" line="1022"/>
+        <source>Show &amp;SQL</source>
+        <translation>Zeige &amp;SQL</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="934" />
-      <source>Squash migrations of an application of the project</source>
-      <translation>Migrationen einer Anwendung des Projektes zusammenfassen</translation>
+        <location filename="../Project.py" line="1042"/>
+        <source>&amp;Migrations</source>
+        <translation>&amp;Migrationen</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="937" />
-      <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>
+        <location filename="../Project.py" line="1067"/>
+        <source>&amp;Tools</source>
+        <translation>&amp;Werkzeuge</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="955" />
-      <source>D&amp;jango</source>
-      <translation>D&amp;jango</translation>
+        <location filename="../Project.py" line="1087"/>
+        <source>T&amp;esting</source>
+        <translation>&amp;Testen</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="997" />
-      <source>&amp;Database</source>
-      <translation>&amp;Datenbank</translation>
+        <location filename="../Project.py" line="1108"/>
+        <source>&amp;Authorization</source>
+        <translation>&amp;Authorisierung</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="1021" />
-      <source>Show &amp;SQL</source>
-      <translation>Zeige &amp;SQL</translation>
+        <location filename="../Project.py" line="1125"/>
+        <source>&amp;Session</source>
+        <translation>&amp;Session</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="1041" />
-      <source>&amp;Migrations</source>
-      <translation>&amp;Migrationen</translation>
+        <location filename="../Project.py" line="1173"/>
+        <source>Open with {0}</source>
+        <translation>Mit {0} öffnen</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="1066" />
-      <source>&amp;Tools</source>
-      <translation>&amp;Werkzeuge</translation>
+        <location filename="../Project.py" line="1187"/>
+        <source>New template...</source>
+        <translation>Neues Template...</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="1086" />
-      <source>T&amp;esting</source>
-      <translation>&amp;Testen</translation>
+        <location filename="../Project.py" line="1197"/>
+        <source>Update all catalogs</source>
+        <translation>Alle Kataloge aktualisieren</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="1107" />
-      <source>&amp;Authorization</source>
-      <translation>&amp;Authorisierung</translation>
+        <location filename="../Project.py" line="1202"/>
+        <source>Update selected catalogs</source>
+        <translation>Ausgewählte Kataloge aktualisieren</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="1124" />
-      <source>&amp;Session</source>
-      <translation>&amp;Session</translation>
-    </message>
-    <message>
-      <location filename="../Project.py" line="1172" />
-      <source>Open with {0}</source>
-      <translation>Mit {0} öffnen</translation>
+        <location filename="../Project.py" line="1207"/>
+        <source>Update all catalogs (with obsolete)</source>
+        <translation>Alle Kataloge aktualisieren (mit veralteten)</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="1186" />
-      <source>New template...</source>
-      <translation>Neues Template...</translation>
+        <location filename="../Project.py" line="1212"/>
+        <source>Update selected catalogs (with obsolete)</source>
+        <translation>Ausgewählte Kataloge aktualisieren (mit veralteten)</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="1196" />
-      <source>Update all catalogs</source>
-      <translation>Alle Kataloge aktualisieren</translation>
+        <location filename="../Project.py" line="1215"/>
+        <source>Compile all catalogs</source>
+        <translation>Alle Kataloge übersetzen</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="1201" />
-      <source>Update selected catalogs</source>
-      <translation>Ausgewählte Kataloge aktualisieren</translation>
+        <location filename="../Project.py" line="1220"/>
+        <source>Compile selected catalogs</source>
+        <translation>Ausgewählte Kataloge übersetzen</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="1206" />
-      <source>Update all catalogs (with obsolete)</source>
-      <translation>Alle Kataloge aktualisieren (mit veralteten)</translation>
+        <location filename="../Project.py" line="1256"/>
+        <source>HTML Files (*.html);;HTML Files (*.htm);;All Files (*)</source>
+        <translation>HTML Dateien (*.html);;HTML Dateien (*.htm);;Alle Dateien (*)</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="1211" />
-      <source>Update selected catalogs (with obsolete)</source>
-      <translation>Ausgewählte Kataloge aktualisieren (mit veralteten)</translation>
+        <location filename="../Project.py" line="1361"/>
+        <location filename="../Project.py" line="1296"/>
+        <location filename="../Project.py" line="1279"/>
+        <location filename="../Project.py" line="1259"/>
+        <source>New Form</source>
+        <translation>Neues Formular</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="1214" />
-      <source>Compile all catalogs</source>
-      <translation>Alle Kataloge übersetzen</translation>
-    </message>
-    <message>
-      <location filename="../Project.py" line="1219" />
-      <source>Compile selected catalogs</source>
-      <translation>Ausgewählte Kataloge übersetzen</translation>
+        <location filename="../Project.py" line="1280"/>
+        <source>The file already exists! Overwrite it?</source>
+        <translation>Die Datei existiert bereits. Überschreiben?</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="1255" />
-      <source>HTML Files (*.html);;HTML Files (*.htm);;All Files (*)</source>
-      <translation>HTML Dateien (*.html);;HTML Dateien (*.htm);;Alle Dateien (*)</translation>
+        <location filename="../Project.py" line="1289"/>
+        <source>Base Template</source>
+        <translation>Basisvorlage</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="1311" />
-      <location filename="../Project.py" line="1280" />
-      <location filename="../Project.py" line="1260" />
-      <source>New Form</source>
-      <translation>Neues Formular</translation>
+        <location filename="../Project.py" line="1290"/>
+        <source>Extending Template</source>
+        <translation>Erweiterungsvorlage</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="1281" />
-      <source>The file already exists! Overwrite it?</source>
-      <translation>Die Datei existiert bereits. Überschreiben?</translation>
+        <location filename="../Project.py" line="1291"/>
+        <source>Standalone Template</source>
+        <translation>Eigenständige Vorlage</translation>
+    </message>
+    <message>
+        <location filename="../Project.py" line="1292"/>
+        <source>Empty Template</source>
+        <translation>Leere Vorlage</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="1312" />
-      <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>
+        <location filename="../Project.py" line="1297"/>
+        <source>Select a template type:</source>
+        <translation>Wähle einen Vorlagetyp:</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="1586" />
-      <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="{1}"&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="{1}"&gt;{1}&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/p&gt;</translation>
+        <location filename="../Project.py" line="1362"/>
+        <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="1663" />
-      <source>Select Applications</source>
-      <translation>Applikation auswählen</translation>
+        <location filename="../Project.py" line="1636"/>
+        <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="1664" />
-      <source>Enter the list of applications separated by spaces.</source>
-      <translation>Gib die Liste der Applikationen durch Leerzeichen getrennt ein.</translation>
+        <location filename="../Project.py" line="1714"/>
+        <source>Select Applications</source>
+        <translation>Applikation auswählen</translation>
+    </message>
+    <message>
+        <location filename="../Project.py" line="1715"/>
+        <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="2147" />
-      <location filename="../Project.py" line="1850" />
-      <source>Project</source>
-      <translation>Projekt</translation>
+        <location filename="../Project.py" line="2202"/>
+        <location filename="../Project.py" line="1901"/>
+        <source>Project</source>
+        <translation>Projekt</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="1851" />
-      <source>Application</source>
-      <translation>Anwendung</translation>
-    </message>
-    <message>
-      <location filename="../Project.py" line="1855" />
-      <source>Start Django</source>
-      <translation>Django starten</translation>
+        <location filename="../Project.py" line="1902"/>
+        <source>Application</source>
+        <translation>Anwendung</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="1856" />
-      <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>
+        <location filename="../Project.py" line="1906"/>
+        <source>Start Django</source>
+        <translation>Django starten</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="1958" />
-      <location filename="../Project.py" line="1886" />
-      <source>Start Django Project</source>
-      <translation>Django Projekt starten</translation>
+        <location filename="../Project.py" line="1907"/>
+        <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="1894" />
-      <source>&lt;p&gt;The Django project path &lt;b&gt;{0}&lt;/b&gt; exists already. Shall it be removed and recreated?&lt;/p&gt;</source>
-      <translation>&lt;p&gt;Das Django Projektverzeichnis &lt;b&gt;{0}&lt;/b&gt; existiert bereits. Soll es gelöscht und neu erzeugt werden?&lt;/p&gt;</translation>
+        <location filename="../Project.py" line="2011"/>
+        <location filename="../Project.py" line="1937"/>
+        <source>Start Django Project</source>
+        <translation>Django Projekt starten</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="1904" />
-      <source>&lt;p&gt;Please add the files to the eric project manually.&lt;/p&gt;</source>
-      <translation>&lt;p&gt;Füge die Dateien bitte manuell zum eric Projekt hinzu.&lt;/p&gt;</translation>
+        <location filename="../Project.py" line="1945"/>
+        <source>&lt;p&gt;The Django project path &lt;b&gt;{0}&lt;/b&gt; exists already. Shall it be removed and recreated?&lt;/p&gt;</source>
+        <translation>&lt;p&gt;Das Django Projektverzeichnis &lt;b&gt;{0}&lt;/b&gt; existiert bereits. Soll es gelöscht und neu erzeugt werden?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="2005" />
-      <location filename="../Project.py" line="1923" />
-      <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>
+        <location filename="../Project.py" line="1955"/>
+        <source>&lt;p&gt;Please add the files to the eric project manually.&lt;/p&gt;</source>
+        <translation>&lt;p&gt;Füge die Dateien bitte manuell zum eric Projekt hinzu.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="1934" />
-      <source>Django project created successfully.</source>
-      <translation>Das Django Projekt wurde erfolgreich erzeugt.</translation>
+        <location filename="../Project.py" line="2058"/>
+        <location filename="../Project.py" line="1974"/>
+        <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="1959" />
-      <source>Enter the name of the new Django project.</source>
-      <translation>Gib den Namen des neuen Django Projektes ein.</translation>
+        <location filename="../Project.py" line="1986"/>
+        <source>Django project created successfully.</source>
+        <translation>Das Django Projekt wurde erfolgreich erzeugt.</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="1987" />
-      <source>Start Django Application</source>
-      <translation>Django Anwendung starten</translation>
+        <location filename="../Project.py" line="2012"/>
+        <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="2023" />
-      <source>Django application created successfully.</source>
-      <translation>Die Django Anwendung wurde erfolgreich erzeugt.</translation>
+        <location filename="../Project.py" line="2040"/>
+        <source>Start Django Application</source>
+        <translation>Django Anwendung starten</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="2036" />
-      <source>Start Global Django Application</source>
-      <translation>Globale Django Anwendung beginnen</translation>
+        <location filename="../Project.py" line="2077"/>
+        <source>Django application created successfully.</source>
+        <translation>Die Django Anwendung wurde erfolgreich erzeugt.</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="2037" />
-      <source>Enter the name of the new global Django application.</source>
-      <translation>Gib den Namen der neuen globalen Django Anwendung ein.</translation>
+        <location filename="../Project.py" line="2091"/>
+        <source>Start Global Django Application</source>
+        <translation>Globale Django Anwendung beginnen</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="2058" />
-      <source>Start Local Django Application</source>
-      <translation>Lokale Django Anwendung beginnen</translation>
+        <location filename="../Project.py" line="2092"/>
+        <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="2059" />
-      <source>Enter the name of the new local Django application.</source>
-      <translation>Gib den Namen der neuen lokalen Django Anwendung ein.</translation>
+        <location filename="../Project.py" line="2113"/>
+        <source>Start Local Django Application</source>
+        <translation>Lokale Django Anwendung beginnen</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="2109" />
-      <source>Select Project</source>
-      <translation>Wähle Projekt</translation>
+        <location filename="../Project.py" line="2114"/>
+        <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="2110" />
-      <source>Select the Django project to work with.</source>
-      <translation>Wähle das Django Projekt, mit dem gearbeitet werden soll.</translation>
+        <location filename="../Project.py" line="2164"/>
+        <source>Select Project</source>
+        <translation>Wähle Projekt</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="2145" />
-      <source>None</source>
-      <translation>keines</translation>
+        <location filename="../Project.py" line="2165"/>
+        <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="2151" />
-      <source>&amp;Current Django project ({0})</source>
-      <translation>&amp;Aktuelles Django Projekt ({0})</translation>
+        <location filename="../Project.py" line="2200"/>
+        <source>None</source>
+        <translation>keines</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="3633" />
-      <location filename="../Project.py" line="3240" />
-      <location filename="../Project.py" line="3216" />
-      <location filename="../Project.py" line="3167" />
-      <location filename="../Project.py" line="3117" />
-      <location filename="../Project.py" line="2914" />
-      <location filename="../Project.py" line="2460" />
-      <location filename="../Project.py" line="2219" />
-      <source>Process Generation Error</source>
-      <translation>Fehler beim Prozessstart</translation>
+        <location filename="../Project.py" line="2206"/>
+        <source>&amp;Current Django project ({0})</source>
+        <translation>&amp;Aktuelles Django Projekt ({0})</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="2220" />
-      <source>The Django server could not be started.</source>
-      <translation>Der Django Server konnte nicht gestartet werden.</translation>
+        <location filename="../Project.py" line="3726"/>
+        <location filename="../Project.py" line="3317"/>
+        <location filename="../Project.py" line="3293"/>
+        <location filename="../Project.py" line="3244"/>
+        <location filename="../Project.py" line="3194"/>
+        <location filename="../Project.py" line="2984"/>
+        <location filename="../Project.py" line="2517"/>
+        <location filename="../Project.py" line="2274"/>
+        <source>Process Generation Error</source>
+        <translation>Fehler beim Prozessstart</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="2267" />
-      <source>Could not start the web-browser for the url "{0}".</source>
-      <translation>Der Web-Browser konnt mit der URL "{0}" nicht gestartet werden.</translation>
+        <location filename="../Project.py" line="2275"/>
+        <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="2341" />
-      <source>Database Name</source>
-      <translation>Datenbankname</translation>
+        <location filename="../Project.py" line="2322"/>
+        <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="2342" />
-      <source>Select a database name (leave empty for default):</source>
-      <translation>Wähle einen Datenbanknamen aus (leer lassen für Standardname):</translation>
+        <location filename="../Project.py" line="2396"/>
+        <source>Database Name</source>
+        <translation>Datenbankname</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="2363" />
-      <source>&lt;default&gt;</source>
-      <translation>&lt;Standard&gt;</translation>
+        <location filename="../Project.py" line="2397"/>
+        <source>Select a database name (leave empty for default):</source>
+        <translation>Wähle einen Datenbanknamen aus (leer lassen für Standardname):</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="2365" />
-      <source>&amp;Current Database ({0})</source>
-      <translation>Aktuelle &amp;Datenbank ({0})</translation>
+        <location filename="../Project.py" line="2418"/>
+        <source>&lt;default&gt;</source>
+        <translation>&lt;Standard&gt;</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="2386" />
-      <source>Introspect Database</source>
-      <translation>Datenbank untersuchen</translation>
+        <location filename="../Project.py" line="2420"/>
+        <source>&amp;Current Database ({0})</source>
+        <translation>Aktuelle &amp;Datenbank ({0})</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="2420" />
-      <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>
+        <location filename="../Project.py" line="2441"/>
+        <source>Introspect Database</source>
+        <translation>Datenbank untersuchen</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="2432" />
-      <source>Database tables flushed successfully.</source>
-      <translation>Datenbank erfolgreich neu initialisiert.</translation>
+        <location filename="../Project.py" line="2475"/>
+        <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="3241" />
-      <location filename="../Project.py" line="3217" />
-      <location filename="../Project.py" line="3118" />
-      <location filename="../Project.py" line="2915" />
-      <location filename="../Project.py" line="2461" />
-      <source>The Django process could not be started.</source>
-      <translation>Der Django Prozess konnte nicht gestartet werden.</translation>
+        <location filename="../Project.py" line="2488"/>
+        <source>Database tables flushed successfully.</source>
+        <translation>Datenbank erfolgreich neu initialisiert.</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="2563" />
-      <location filename="../Project.py" line="2500" />
-      <source>SQL Files (*.sql)</source>
-      <translation>SQL Dateien (*.sql)</translation>
+        <location filename="../Project.py" line="3318"/>
+        <location filename="../Project.py" line="3294"/>
+        <location filename="../Project.py" line="3195"/>
+        <location filename="../Project.py" line="2985"/>
+        <location filename="../Project.py" line="2518"/>
+        <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="2544" />
-      <location filename="../Project.py" line="2540" />
-      <source>SQL Migrate</source>
-      <translation>SQL Migrate</translation>
+        <location filename="../Project.py" line="2625"/>
+        <location filename="../Project.py" line="2557"/>
+        <source>SQL Files (*.sql)</source>
+        <translation>SQL Dateien (*.sql)</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="2818" />
-      <location filename="../Project.py" line="2684" />
-      <location filename="../Project.py" line="2631" />
-      <location filename="../Project.py" line="2540" />
-      <source>No migrations available.</source>
-      <translation>Keine Migrationen verfügbar.</translation>
+        <location filename="../Project.py" line="2603"/>
+        <location filename="../Project.py" line="2599"/>
+        <source>SQL Migrate</source>
+        <translation>SQL Migrate</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="2652" />
-      <source>Apply Migrations</source>
-      <translation>Migrationen anwenden</translation>
+        <location filename="../Project.py" line="2886"/>
+        <location filename="../Project.py" line="2752"/>
+        <location filename="../Project.py" line="2697"/>
+        <location filename="../Project.py" line="2599"/>
+        <source>No migrations available.</source>
+        <translation>Keine Migrationen verfügbar.</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="2691" />
-      <source>Select an application:</source>
-      <translation>Wähle eine Anwendung aus:</translation>
+        <location filename="../Project.py" line="2720"/>
+        <source>Apply Migrations</source>
+        <translation>Migrationen anwenden</translation>
+    </message>
+    <message>
+        <location filename="../Project.py" line="2759"/>
+        <source>Select an application:</source>
+        <translation>Wähle eine Anwendung aus:</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="2948" />
-      <source>Test Email sent successfully.</source>
-      <translation>Testemail erfolgreich verschickt.</translation>
+        <location filename="../Project.py" line="3018"/>
+        <source>Test Email sent successfully.</source>
+        <translation>Testemail erfolgreich verschickt.</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="2949" />
-      <source>Test Email could not be sent.</source>
-      <translation>Testemail konnte nicht verschickt werden.</translation>
+        <location filename="../Project.py" line="3019"/>
+        <source>Test Email could not be sent.</source>
+        <translation>Testemail konnte nicht verschickt werden.</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="2978" />
-      <source>Cache tables created successfully.</source>
-      <translation>Cache Tabellen erfolgreich erzeugt.</translation>
+        <location filename="../Project.py" line="3050"/>
+        <source>Cache tables created successfully.</source>
+        <translation>Cache Tabellen erfolgreich erzeugt.</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="3018" />
-      <source>JSON Files (*.json)</source>
-      <translation>JSON Dateien (*.json)</translation>
+        <location filename="../Project.py" line="3091"/>
+        <source>JSON Files (*.json)</source>
+        <translation>JSON Dateien (*.json)</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="3020" />
-      <source>XML Files (*.xml)</source>
-      <translation>XML Dateien (*.xml)</translation>
+        <location filename="../Project.py" line="3093"/>
+        <source>XML Files (*.xml)</source>
+        <translation>XML Dateien (*.xml)</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="3022" />
-      <source>YAML Files (*.yaml)</source>
-      <translation>YAML Dateien (*.yaml)</translation>
+        <location filename="../Project.py" line="3095"/>
+        <source>YAML Files (*.yaml)</source>
+        <translation>YAML Dateien (*.yaml)</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="3168" />
-      <source>The Django test server could not be started.</source>
-      <translation>Der Django Testserver konnte nicht gestartet werden.</translation>
+        <location filename="../Project.py" line="3245"/>
+        <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="3199" />
-      <source>Enter the name of the user:</source>
-      <translation>Gib den Namen des Nutzers ein:</translation>
+        <location filename="../Project.py" line="3276"/>
+        <source>Enter the name of the user:</source>
+        <translation>Gib den Namen des Nutzers ein:</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="3265" />
-      <source>Expired sessions cleared successfully.</source>
-      <translation>Abgelaufene Sessions erfolgreich gelöscht.</translation>
+        <location filename="../Project.py" line="3343"/>
+        <source>Expired sessions cleared successfully.</source>
+        <translation>Abgelaufene Sessions erfolgreich gelöscht.</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="3341" />
-      <source>Initializing message catalog for '{0}'</source>
-      <translation>Initialisiere Textkatalog für '{0}'</translation>
+        <location filename="../Project.py" line="3420"/>
+        <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="3599" />
-      <location filename="../Project.py" line="3540" />
-      <location filename="../Project.py" line="3514" />
-      <location filename="../Project.py" line="3482" />
-      <location filename="../Project.py" line="3431" />
-      <location filename="../Project.py" line="3386" />
-      <location filename="../Project.py" line="3355" />
-      <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>
+        <location filename="../Project.py" line="3690"/>
+        <location filename="../Project.py" line="3629"/>
+        <location filename="../Project.py" line="3601"/>
+        <location filename="../Project.py" line="3567"/>
+        <location filename="../Project.py" line="3514"/>
+        <location filename="../Project.py" line="3467"/>
+        <location filename="../Project.py" line="3434"/>
+        <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="3360" />
-      <source>
+        <location filename="../Project.py" line="3440"/>
+        <source>
 Message catalog initialized successfully.</source>
-      <translation>
+        <translation>
 Textkatalog erfolgreich initialisiert.</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="3467" />
-      <location filename="../Project.py" line="3378" />
-      <source>Updating message catalogs</source>
-      <translation>Aktualisiere Textkataloge</translation>
+        <location filename="../Project.py" line="3552"/>
+        <location filename="../Project.py" line="3459"/>
+        <source>Updating message catalogs</source>
+        <translation>Aktualisiere Textkataloge</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="3560" />
-      <location filename="../Project.py" line="3449" />
-      <location filename="../Project.py" line="3405" />
-      <source>No locales detected. Aborting...</source>
-      <translation>Keine Sprachen erkannt. Abbruch...</translation>
+        <location filename="../Project.py" line="3649"/>
+        <location filename="../Project.py" line="3532"/>
+        <location filename="../Project.py" line="3486"/>
+        <source>No locales detected. Aborting...</source>
+        <translation>Keine Sprachen erkannt. Abbruch...</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="3519" />
-      <location filename="../Project.py" line="3487" />
-      <location filename="../Project.py" line="3454" />
-      <location filename="../Project.py" line="3410" />
-      <source>
+        <location filename="../Project.py" line="3607"/>
+        <location filename="../Project.py" line="3573"/>
+        <location filename="../Project.py" line="3538"/>
+        <location filename="../Project.py" line="3492"/>
+        <source>
 Message catalogs updated successfully.</source>
-      <translation>
+        <translation>
 Textkataloge erfolgreich aktualisiert.</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="3500" />
-      <location filename="../Project.py" line="3423" />
-      <source>Updating message catalogs (keeping obsolete messages)</source>
-      <translation>Aktualisiere Textkataloge (veraltete Texte behalten)</translation>
+        <location filename="../Project.py" line="3587"/>
+        <location filename="../Project.py" line="3506"/>
+        <source>Updating message catalogs (keeping obsolete messages)</source>
+        <translation>Aktualisiere Textkataloge (veraltete Texte behalten)</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="3584" />
-      <location filename="../Project.py" line="3532" />
-      <source>Compiling message catalogs</source>
-      <translation>Übersetze Textkataloge</translation>
+        <location filename="../Project.py" line="3675"/>
+        <location filename="../Project.py" line="3621"/>
+        <source>Compiling message catalogs</source>
+        <translation>Übersetze Textkataloge</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="3604" />
-      <location filename="../Project.py" line="3565" />
-      <source>
+        <location filename="../Project.py" line="3696"/>
+        <location filename="../Project.py" line="3655"/>
+        <source>
 Message catalogs compiled successfully.</source>
-      <translation>
+        <translation>
 Textkataloge erfolgreich übersetzt.</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="3634" />
-      <source>The translations editor process ({0}) could not be started.</source>
-      <translation>Der Prozess für den Übersetzungseditor ({0}) konnte nicht gestartet werden.</translation>
+        <location filename="../Project.py" line="3727"/>
+        <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>
-  </context>
-  <context>
+</context>
+<context>
     <name>ProjectDjangoPlugin</name>
     <message>
-      <location filename="../../PluginProjectDjango.py" line="439" />
-      <location filename="../../PluginProjectDjango.py" line="203" />
-      <location filename="../../PluginProjectDjango.py" line="92" />
-      <source>Django</source>
-      <translation>Django</translation>
+        <location filename="../../PluginProjectDjango.py" line="442"/>
+        <location filename="../../PluginProjectDjango.py" line="206"/>
+        <location filename="../../PluginProjectDjango.py" line="95"/>
+        <source>Django</source>
+        <translation>Django</translation>
     </message>
-  </context>
+</context>
 </TS>
--- a/ProjectDjango/i18n/django_empty.ts	Thu Dec 26 14:24:34 2024 +0100
+++ b/ProjectDjango/i18n/django_empty.ts	Fri Dec 27 14:17:37 2024 +0100
@@ -865,1149 +865,1175 @@
   <context>
     <name>Project</name>
     <message>
-      <location filename="../Project.py" line="180" />
+      <location filename="../Project.py" line="181" />
       <source>Current Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="182" />
+      <location filename="../Project.py" line="183" />
       <source>Selects the current project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="184" />
+      <location filename="../Project.py" line="185" />
       <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" />
     </message>
     <message>
-      <location filename="../Project.py" line="199" />
+      <location filename="../Project.py" line="200" />
       <source>Start Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="200" />
+      <location filename="../Project.py" line="201" />
       <source>Start &amp;Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="206" />
+      <location filename="../Project.py" line="207" />
       <source>Starts a new Django project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="208" />
+      <location filename="../Project.py" line="209" />
       <source>&lt;b&gt;Start Project&lt;/b&gt;&lt;p&gt;Starts a new Django project using "django-admin.py startproject".&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="218" />
-      <source>Start Application (global)</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project.py" line="219" />
+      <source>Start Application (global)</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project.py" line="220" />
       <source>Start Application (&amp;global)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="226" />
+      <location filename="../Project.py" line="227" />
       <source>Starts a new global Django application</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="229" />
+      <location filename="../Project.py" line="230" />
       <source>&lt;b&gt;Start Application (global)&lt;/b&gt;&lt;p&gt;Starts a new global Django application using "django-admin.py startapp".&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="239" />
-      <source>Start Application (local)</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project.py" line="240" />
+      <source>Start Application (local)</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project.py" line="241" />
       <source>Start Application (&amp;local)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="247" />
+      <location filename="../Project.py" line="248" />
       <source>Starts a new local Django application</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="250" />
+      <location filename="../Project.py" line="251" />
       <source>&lt;b&gt;Start Application (local)&lt;/b&gt;&lt;p&gt;Starts a new local Django application using "manage.py startapp".&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="264" />
+      <location filename="../Project.py" line="265" />
       <source>Run Server</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="265" />
+      <location filename="../Project.py" line="266" />
       <source>Run &amp;Server</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="271" />
+      <location filename="../Project.py" line="272" />
       <source>Starts the Django Web server</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="273" />
+      <location filename="../Project.py" line="274" />
       <source>&lt;b&gt;Run Server&lt;/b&gt;&lt;p&gt;Starts the Django Web server using "manage.py runserver".&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="2266" />
-      <location filename="../Project.py" line="283" />
+      <location filename="../Project.py" line="2321" />
+      <location filename="../Project.py" line="284" />
       <source>Run Web-Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="284" />
+      <location filename="../Project.py" line="285" />
       <source>Run &amp;Web-Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="291" />
+      <location filename="../Project.py" line="292" />
       <source>Starts the default Web-Browser with the URL of the Django Web server</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="297" />
+      <location filename="../Project.py" line="298" />
       <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" />
     </message>
     <message>
-      <location filename="../Project.py" line="2963" />
-      <location filename="../Project.py" line="311" />
+      <location filename="../Project.py" line="3034" />
+      <location filename="../Project.py" line="312" />
       <source>Create Cache Tables</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="312" />
+      <location filename="../Project.py" line="313" />
       <source>C&amp;reate Cache Tables</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="319" />
+      <location filename="../Project.py" line="320" />
       <source>Creates the tables needed to use the SQL cache backend</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="322" />
+      <location filename="../Project.py" line="323" />
       <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" />
     </message>
     <message>
-      <location filename="../Project.py" line="336" />
+      <location filename="../Project.py" line="337" />
       <source>Help</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="336" />
+      <location filename="../Project.py" line="337" />
       <source>&amp;Help</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="338" />
+      <location filename="../Project.py" line="339" />
       <source>Shows the Django help index</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="340" />
+      <location filename="../Project.py" line="341" />
       <source>&lt;b&gt;Help&lt;/b&gt;&lt;p&gt;Shows the Django help index page.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="1585" />
-      <location filename="../Project.py" line="350" />
+      <location filename="../Project.py" line="1635" />
+      <location filename="../Project.py" line="351" />
       <source>About Django</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="351" />
+      <location filename="../Project.py" line="352" />
       <source>About D&amp;jango</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="357" />
+      <location filename="../Project.py" line="358" />
       <source>Shows some information about Django</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="359" />
+      <location filename="../Project.py" line="360" />
       <source>&lt;b&gt;About Django&lt;/b&gt;&lt;p&gt;Shows some information about Django.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="3680" />
+      <location filename="../Project.py" line="3774" />
+      <location filename="../Project.py" line="374" />
       <location filename="../Project.py" line="373" />
-      <location filename="../Project.py" line="372" />
       <source>Check Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="380" />
+      <location filename="../Project.py" line="381" />
       <source>Inspects the Django project for common problems</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="383" />
+      <location filename="../Project.py" line="384" />
       <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" />
     </message>
     <message>
-      <location filename="../Project.py" line="404" />
+      <location filename="../Project.py" line="405" />
       <source>Current Database</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="406" />
+      <location filename="../Project.py" line="407" />
       <source>Selects the current database</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="408" />
+      <location filename="../Project.py" line="409" />
       <source>&lt;b&gt;Current Database&lt;/b&gt;&lt;p&gt;Selects the database name to be used by all database actions. An empty database name indicates to use the default name.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="420" />
+      <location filename="../Project.py" line="421" />
       <source>Introspect</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="421" />
+      <location filename="../Project.py" line="422" />
       <source>&amp;Introspect</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="428" />
+      <location filename="../Project.py" line="429" />
       <source>Introspects the database tables and outputs a Django model module</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="431" />
+      <location filename="../Project.py" line="432" />
       <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" />
     </message>
     <message>
-      <location filename="../Project.py" line="441" />
+      <location filename="../Project.py" line="442" />
       <source>Flush</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="441" />
+      <location filename="../Project.py" line="442" />
       <source>&amp;Flush</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="444" />
+      <location filename="../Project.py" line="445" />
       <source>Returns all database tables to the state just after their installation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="450" />
+      <location filename="../Project.py" line="451" />
       <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" />
     </message>
     <message>
-      <location filename="../Project.py" line="460" />
-      <source>Start Client Console</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project.py" line="461" />
+      <source>Start Client Console</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project.py" line="462" />
       <source>Start &amp;Client Console</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="468" />
+      <location filename="../Project.py" line="469" />
       <source>Starts a console window for the database client</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="471" />
+      <location filename="../Project.py" line="472" />
       <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" />
     </message>
     <message>
-      <location filename="../Project.py" line="2512" />
-      <location filename="../Project.py" line="2415" />
-      <location filename="../Project.py" line="484" />
+      <location filename="../Project.py" line="2571" />
+      <location filename="../Project.py" line="2470" />
+      <location filename="../Project.py" line="485" />
       <source>Flush Database</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="485" />
+      <location filename="../Project.py" line="486" />
       <source>&amp;Flush Database</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="492" />
+      <location filename="../Project.py" line="493" />
       <source>Prints a list of statements to return all database tables to the state just after their installation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="498" />
+      <location filename="../Project.py" line="499" />
       <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" />
     </message>
     <message>
-      <location filename="../Project.py" line="2519" />
-      <location filename="../Project.py" line="508" />
+      <location filename="../Project.py" line="2578" />
+      <location filename="../Project.py" line="509" />
       <source>Reset Sequences</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="509" />
+      <location filename="../Project.py" line="510" />
       <source>Reset &amp;Sequences</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="516" />
+      <location filename="../Project.py" line="517" />
       <source>Prints the SQL statements for resetting sequences for one or more applications</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="522" />
+      <location filename="../Project.py" line="523" />
       <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" />
     </message>
     <message>
-      <location filename="../Project.py" line="532" />
+      <location filename="../Project.py" line="533" />
       <source>Apply Migration</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="533" />
+      <location filename="../Project.py" line="534" />
       <source>&amp;Apply Migration</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="540" />
+      <location filename="../Project.py" line="541" />
       <source>Prints the SQL statements to apply a migration of an application</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="543" />
+      <location filename="../Project.py" line="544" />
       <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" />
     </message>
     <message>
-      <location filename="../Project.py" line="553" />
+      <location filename="../Project.py" line="554" />
       <source>Unapply Migration</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="554" />
+      <location filename="../Project.py" line="555" />
       <source>&amp;Unapply Migration</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="561" />
+      <location filename="../Project.py" line="562" />
       <source>Prints the SQL statements to unapply a migration of an application</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="566" />
+      <location filename="../Project.py" line="567" />
       <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" />
     </message>
     <message>
-      <location filename="../Project.py" line="2862" />
-      <location filename="../Project.py" line="582" />
+      <location filename="../Project.py" line="2932" />
+      <location filename="../Project.py" line="583" />
       <source>Diff Settings</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="583" />
+      <location filename="../Project.py" line="584" />
       <source>&amp;Diff Settings</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="590" />
+      <location filename="../Project.py" line="591" />
       <source>Shows the modification made to the settings</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="593" />
+      <location filename="../Project.py" line="594" />
       <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" />
     </message>
     <message>
-      <location filename="../Project.py" line="602" />
-      <source>Start Python Console</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project.py" line="603" />
+      <source>Start Python Console</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project.py" line="604" />
       <source>Start &amp;Python Console</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="610" />
+      <location filename="../Project.py" line="611" />
       <source>Starts a Python interactive interpreter</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="613" />
+      <location filename="../Project.py" line="614" />
       <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" />
     </message>
     <message>
-      <location filename="../Project.py" line="2924" />
-      <location filename="../Project.py" line="622" />
+      <location filename="../Project.py" line="2994" />
+      <location filename="../Project.py" line="623" />
       <source>Send Test Email</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="623" />
+      <location filename="../Project.py" line="624" />
       <source>Send Test &amp;Email</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="629" />
+      <location filename="../Project.py" line="630" />
       <source>Send a test email through Django</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="631" />
+      <location filename="../Project.py" line="632" />
       <source>&lt;b&gt;Send Test Email&lt;/b&gt;&lt;p&gt;Sends a test email to confirm email sending through Django is working.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="2994" />
-      <location filename="../Project.py" line="645" />
+      <location filename="../Project.py" line="3067" />
+      <location filename="../Project.py" line="646" />
       <source>Dump Data</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="646" />
+      <location filename="../Project.py" line="647" />
       <source>&amp;Dump Data</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="652" />
+      <location filename="../Project.py" line="653" />
       <source>Dump the database data to a fixture</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="654" />
+      <location filename="../Project.py" line="655" />
       <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" />
     </message>
     <message>
-      <location filename="../Project.py" line="3037" />
-      <location filename="../Project.py" line="660" />
+      <location filename="../Project.py" line="3114" />
+      <location filename="../Project.py" line="661" />
       <source>Load Data</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="661" />
+      <location filename="../Project.py" line="662" />
       <source>&amp;Load Data</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="667" />
+      <location filename="../Project.py" line="668" />
       <source>Load data from fixture files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="669" />
+      <location filename="../Project.py" line="670" />
       <source>&lt;b&gt;Load Data&lt;/b&gt;&lt;p&gt;Load data from fixture files.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="675" />
+      <location filename="../Project.py" line="676" />
       <source>Run Testsuite</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="676" />
+      <location filename="../Project.py" line="677" />
       <source>Run &amp;Testsuite</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="683" />
+      <location filename="../Project.py" line="684" />
       <source>Run the test suite for applications or the whole site</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="686" />
+      <location filename="../Project.py" line="687" />
       <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" />
     </message>
     <message>
+      <location filename="../Project.py" line="697" />
       <location filename="../Project.py" line="696" />
-      <location filename="../Project.py" line="695" />
       <source>Run Testsuite (-Wall)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="703" />
+      <location filename="../Project.py" line="704" />
       <source>Run the test suite for applications or the whole site with activated deprecation warnings</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="709" />
+      <location filename="../Project.py" line="710" />
       <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" />
     </message>
     <message>
-      <location filename="../Project.py" line="721" />
+      <location filename="../Project.py" line="722" />
       <source>Run Testserver</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="722" />
+      <location filename="../Project.py" line="723" />
       <source>Run Test&amp;server</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="729" />
+      <location filename="../Project.py" line="730" />
       <source>Run a development server with data from a set of fixtures</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="732" />
+      <location filename="../Project.py" line="733" />
       <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" />
     </message>
     <message>
-      <location filename="../Project.py" line="3198" />
-      <location filename="../Project.py" line="746" />
+      <location filename="../Project.py" line="3275" />
+      <location filename="../Project.py" line="747" />
       <source>Change Password</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="747" />
+      <location filename="../Project.py" line="748" />
       <source>Change &amp;Password</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="753" />
+      <location filename="../Project.py" line="754" />
       <source>Change the password of a user</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="755" />
+      <location filename="../Project.py" line="756" />
       <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" />
     </message>
     <message>
-      <location filename="../Project.py" line="764" />
+      <location filename="../Project.py" line="765" />
       <source>Create Superuser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="765" />
+      <location filename="../Project.py" line="766" />
       <source>Create &amp;Superuser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="771" />
+      <location filename="../Project.py" line="772" />
       <source>Create a superuser account</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="773" />
+      <location filename="../Project.py" line="774" />
       <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" />
     </message>
     <message>
-      <location filename="../Project.py" line="3252" />
-      <location filename="../Project.py" line="786" />
+      <location filename="../Project.py" line="3329" />
+      <location filename="../Project.py" line="787" />
       <source>Clear Sessions</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="787" />
+      <location filename="../Project.py" line="788" />
       <source>Clear &amp;Sessions</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="793" />
+      <location filename="../Project.py" line="794" />
       <source>Clear expired sessions</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="795" />
+      <location filename="../Project.py" line="796" />
       <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" />
     </message>
     <message>
-      <location filename="../Project.py" line="808" />
+      <location filename="../Project.py" line="809" />
       <source>Show Migrations</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="809" />
+      <location filename="../Project.py" line="810" />
       <source>&amp;Show Migrations</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="816" />
+      <location filename="../Project.py" line="817" />
       <source>Show a list of available migrations</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="819" />
+      <location filename="../Project.py" line="820" />
       <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" />
     </message>
     <message>
-      <location filename="../Project.py" line="829" />
+      <location filename="../Project.py" line="830" />
       <source>Show Migrations Plan</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="830" />
+      <location filename="../Project.py" line="831" />
       <source>Show Migrations &amp;Plan</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="837" />
+      <location filename="../Project.py" line="838" />
       <source>Show a list with the migrations plan</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="840" />
+      <location filename="../Project.py" line="841" />
       <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" />
     </message>
     <message>
-      <location filename="../Project.py" line="850" />
+      <location filename="../Project.py" line="851" />
       <source>Apply All Migrations</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="851" />
+      <location filename="../Project.py" line="852" />
       <source>&amp;Apply All Migrations</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="857" />
+      <location filename="../Project.py" line="858" />
       <source>Apply all available migrations</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="859" />
+      <location filename="../Project.py" line="860" />
       <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" />
     </message>
     <message>
-      <location filename="../Project.py" line="2630" />
+      <location filename="../Project.py" line="2696" />
+      <location filename="../Project.py" line="870" />
       <location filename="../Project.py" line="869" />
-      <location filename="../Project.py" line="868" />
       <source>Apply Selected Migrations</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="875" />
+      <location filename="../Project.py" line="876" />
       <source>Apply selected migrations</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="877" />
+      <location filename="../Project.py" line="878" />
       <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" />
     </message>
     <message>
-      <location filename="../Project.py" line="2690" />
-      <location filename="../Project.py" line="2683" />
-      <location filename="../Project.py" line="2650" />
-      <location filename="../Project.py" line="887" />
+      <location filename="../Project.py" line="2758" />
+      <location filename="../Project.py" line="2751" />
+      <location filename="../Project.py" line="2718" />
+      <location filename="../Project.py" line="888" />
       <source>Unapply Migrations</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="888" />
+      <location filename="../Project.py" line="889" />
       <source>&amp;Unapply Migrations</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="894" />
+      <location filename="../Project.py" line="895" />
       <source>Unapply all migrations for an app</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="896" />
+      <location filename="../Project.py" line="897" />
       <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" />
     </message>
     <message>
-      <location filename="../Project.py" line="2777" />
-      <location filename="../Project.py" line="906" />
+      <location filename="../Project.py" line="2845" />
+      <location filename="../Project.py" line="907" />
       <source>Make Migrations</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="907" />
+      <location filename="../Project.py" line="908" />
       <source>&amp;Make Migrations</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="914" />
+      <location filename="../Project.py" line="915" />
       <source>Generate migrations for the project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="917" />
+      <location filename="../Project.py" line="918" />
       <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" />
     </message>
     <message>
-      <location filename="../Project.py" line="2826" />
-      <location filename="../Project.py" line="2817" />
-      <location filename="../Project.py" line="926" />
+      <location filename="../Project.py" line="2896" />
+      <location filename="../Project.py" line="2885" />
+      <location filename="../Project.py" line="927" />
       <source>Squash Migrations</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="927" />
+      <location filename="../Project.py" line="928" />
       <source>S&amp;quash Migrations</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="934" />
+      <location filename="../Project.py" line="935" />
       <source>Squash migrations of an application of the project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="937" />
+      <location filename="../Project.py" line="938" />
       <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" />
     </message>
     <message>
-      <location filename="../Project.py" line="955" />
+      <location filename="../Project.py" line="956" />
       <source>D&amp;jango</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="997" />
+      <location filename="../Project.py" line="998" />
       <source>&amp;Database</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="1021" />
+      <location filename="../Project.py" line="1022" />
       <source>Show &amp;SQL</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="1041" />
+      <location filename="../Project.py" line="1042" />
       <source>&amp;Migrations</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="1066" />
+      <location filename="../Project.py" line="1067" />
       <source>&amp;Tools</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="1086" />
+      <location filename="../Project.py" line="1087" />
       <source>T&amp;esting</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="1107" />
+      <location filename="../Project.py" line="1108" />
       <source>&amp;Authorization</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="1124" />
+      <location filename="../Project.py" line="1125" />
       <source>&amp;Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="1172" />
+      <location filename="../Project.py" line="1173" />
       <source>Open with {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="1186" />
+      <location filename="../Project.py" line="1187" />
       <source>New template...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="1196" />
+      <location filename="../Project.py" line="1197" />
       <source>Update all catalogs</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="1201" />
+      <location filename="../Project.py" line="1202" />
       <source>Update selected catalogs</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="1206" />
+      <location filename="../Project.py" line="1207" />
       <source>Update all catalogs (with obsolete)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="1211" />
+      <location filename="../Project.py" line="1212" />
       <source>Update selected catalogs (with obsolete)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="1214" />
+      <location filename="../Project.py" line="1215" />
       <source>Compile all catalogs</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="1219" />
+      <location filename="../Project.py" line="1220" />
       <source>Compile selected catalogs</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="1255" />
+      <location filename="../Project.py" line="1256" />
       <source>HTML Files (*.html);;HTML Files (*.htm);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="1311" />
-      <location filename="../Project.py" line="1280" />
-      <location filename="../Project.py" line="1260" />
+      <location filename="../Project.py" line="1361" />
+      <location filename="../Project.py" line="1296" />
+      <location filename="../Project.py" line="1279" />
+      <location filename="../Project.py" line="1259" />
       <source>New Form</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="1281" />
+      <location filename="../Project.py" line="1280" />
       <source>The file already exists! Overwrite it?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="1312" />
+      <location filename="../Project.py" line="1289" />
+      <source>Base Template</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project.py" line="1290" />
+      <source>Extending Template</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project.py" line="1291" />
+      <source>Standalone Template</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project.py" line="1292" />
+      <source>Empty Template</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project.py" line="1297" />
+      <source>Select a template type:</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project.py" line="1362" />
       <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" />
     </message>
     <message>
-      <location filename="../Project.py" line="1586" />
+      <location filename="../Project.py" line="1636" />
       <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="{1}"&gt;{1}&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="1663" />
+      <location filename="../Project.py" line="1714" />
       <source>Select Applications</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="1664" />
+      <location filename="../Project.py" line="1715" />
       <source>Enter the list of applications separated by spaces.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="2147" />
-      <location filename="../Project.py" line="1850" />
+      <location filename="../Project.py" line="2202" />
+      <location filename="../Project.py" line="1901" />
       <source>Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="1851" />
+      <location filename="../Project.py" line="1902" />
       <source>Application</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="1855" />
+      <location filename="../Project.py" line="1906" />
       <source>Start Django</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="1856" />
+      <location filename="../Project.py" line="1907" />
       <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" />
     </message>
     <message>
-      <location filename="../Project.py" line="1958" />
-      <location filename="../Project.py" line="1886" />
+      <location filename="../Project.py" line="2011" />
+      <location filename="../Project.py" line="1937" />
       <source>Start Django Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="1894" />
+      <location filename="../Project.py" line="1945" />
       <source>&lt;p&gt;The Django project path &lt;b&gt;{0}&lt;/b&gt; exists already. Shall it be removed and recreated?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="1904" />
+      <location filename="../Project.py" line="1955" />
       <source>&lt;p&gt;Please add the files to the eric project manually.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="2005" />
-      <location filename="../Project.py" line="1923" />
+      <location filename="../Project.py" line="2058" />
+      <location filename="../Project.py" line="1974" />
       <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" />
     </message>
     <message>
-      <location filename="../Project.py" line="1934" />
+      <location filename="../Project.py" line="1986" />
       <source>Django project created successfully.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="1959" />
+      <location filename="../Project.py" line="2012" />
       <source>Enter the name of the new Django project.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="1987" />
+      <location filename="../Project.py" line="2040" />
       <source>Start Django Application</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="2023" />
+      <location filename="../Project.py" line="2077" />
       <source>Django application created successfully.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="2036" />
+      <location filename="../Project.py" line="2091" />
       <source>Start Global Django Application</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="2037" />
+      <location filename="../Project.py" line="2092" />
       <source>Enter the name of the new global Django application.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="2058" />
+      <location filename="../Project.py" line="2113" />
       <source>Start Local Django Application</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="2059" />
+      <location filename="../Project.py" line="2114" />
       <source>Enter the name of the new local Django application.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="2109" />
+      <location filename="../Project.py" line="2164" />
       <source>Select Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="2110" />
+      <location filename="../Project.py" line="2165" />
       <source>Select the Django project to work with.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="2145" />
+      <location filename="../Project.py" line="2200" />
       <source>None</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="2151" />
+      <location filename="../Project.py" line="2206" />
       <source>&amp;Current Django project ({0})</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="3633" />
-      <location filename="../Project.py" line="3240" />
-      <location filename="../Project.py" line="3216" />
-      <location filename="../Project.py" line="3167" />
-      <location filename="../Project.py" line="3117" />
-      <location filename="../Project.py" line="2914" />
-      <location filename="../Project.py" line="2460" />
-      <location filename="../Project.py" line="2219" />
+      <location filename="../Project.py" line="3726" />
+      <location filename="../Project.py" line="3317" />
+      <location filename="../Project.py" line="3293" />
+      <location filename="../Project.py" line="3244" />
+      <location filename="../Project.py" line="3194" />
+      <location filename="../Project.py" line="2984" />
+      <location filename="../Project.py" line="2517" />
+      <location filename="../Project.py" line="2274" />
       <source>Process Generation Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="2220" />
+      <location filename="../Project.py" line="2275" />
       <source>The Django server could not be started.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="2267" />
+      <location filename="../Project.py" line="2322" />
       <source>Could not start the web-browser for the url "{0}".</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="2341" />
+      <location filename="../Project.py" line="2396" />
       <source>Database Name</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="2342" />
+      <location filename="../Project.py" line="2397" />
       <source>Select a database name (leave empty for default):</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="2363" />
+      <location filename="../Project.py" line="2418" />
       <source>&lt;default&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="2365" />
-      <source>&amp;Current Database ({0})</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project.py" line="2386" />
-      <source>Introspect Database</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project.py" line="2420" />
+      <source>&amp;Current Database ({0})</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project.py" line="2441" />
+      <source>Introspect Database</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project.py" line="2475" />
       <source>Flushing the database will destroy all data. Are you sure?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="2432" />
+      <location filename="../Project.py" line="2488" />
       <source>Database tables flushed successfully.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="3241" />
-      <location filename="../Project.py" line="3217" />
-      <location filename="../Project.py" line="3118" />
-      <location filename="../Project.py" line="2915" />
-      <location filename="../Project.py" line="2461" />
+      <location filename="../Project.py" line="3318" />
+      <location filename="../Project.py" line="3294" />
+      <location filename="../Project.py" line="3195" />
+      <location filename="../Project.py" line="2985" />
+      <location filename="../Project.py" line="2518" />
       <source>The Django process could not be started.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="2563" />
-      <location filename="../Project.py" line="2500" />
+      <location filename="../Project.py" line="2625" />
+      <location filename="../Project.py" line="2557" />
       <source>SQL Files (*.sql)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="2544" />
-      <location filename="../Project.py" line="2540" />
+      <location filename="../Project.py" line="2603" />
+      <location filename="../Project.py" line="2599" />
       <source>SQL Migrate</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="2818" />
-      <location filename="../Project.py" line="2684" />
-      <location filename="../Project.py" line="2631" />
-      <location filename="../Project.py" line="2540" />
+      <location filename="../Project.py" line="2886" />
+      <location filename="../Project.py" line="2752" />
+      <location filename="../Project.py" line="2697" />
+      <location filename="../Project.py" line="2599" />
       <source>No migrations available.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="2652" />
+      <location filename="../Project.py" line="2720" />
       <source>Apply Migrations</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="2691" />
+      <location filename="../Project.py" line="2759" />
       <source>Select an application:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="2948" />
+      <location filename="../Project.py" line="3018" />
       <source>Test Email sent successfully.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="2949" />
+      <location filename="../Project.py" line="3019" />
       <source>Test Email could not be sent.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="2978" />
+      <location filename="../Project.py" line="3050" />
       <source>Cache tables created successfully.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="3018" />
+      <location filename="../Project.py" line="3091" />
       <source>JSON Files (*.json)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="3020" />
+      <location filename="../Project.py" line="3093" />
       <source>XML Files (*.xml)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="3022" />
+      <location filename="../Project.py" line="3095" />
       <source>YAML Files (*.yaml)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="3168" />
+      <location filename="../Project.py" line="3245" />
       <source>The Django test server could not be started.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="3199" />
+      <location filename="../Project.py" line="3276" />
       <source>Enter the name of the user:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="3265" />
+      <location filename="../Project.py" line="3343" />
       <source>Expired sessions cleared successfully.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="3341" />
+      <location filename="../Project.py" line="3420" />
       <source>Initializing message catalog for '{0}'</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="3599" />
-      <location filename="../Project.py" line="3540" />
+      <location filename="../Project.py" line="3690" />
+      <location filename="../Project.py" line="3629" />
+      <location filename="../Project.py" line="3601" />
+      <location filename="../Project.py" line="3567" />
       <location filename="../Project.py" line="3514" />
-      <location filename="../Project.py" line="3482" />
-      <location filename="../Project.py" line="3431" />
-      <location filename="../Project.py" line="3386" />
-      <location filename="../Project.py" line="3355" />
+      <location filename="../Project.py" line="3467" />
+      <location filename="../Project.py" line="3434" />
       <source>No current site selected or no site created yet. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="3360" />
+      <location filename="../Project.py" line="3440" />
       <source>
 Message catalog initialized successfully.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="3467" />
-      <location filename="../Project.py" line="3378" />
+      <location filename="../Project.py" line="3552" />
+      <location filename="../Project.py" line="3459" />
       <source>Updating message catalogs</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="3560" />
-      <location filename="../Project.py" line="3449" />
-      <location filename="../Project.py" line="3405" />
+      <location filename="../Project.py" line="3649" />
+      <location filename="../Project.py" line="3532" />
+      <location filename="../Project.py" line="3486" />
       <source>No locales detected. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="3519" />
-      <location filename="../Project.py" line="3487" />
-      <location filename="../Project.py" line="3454" />
-      <location filename="../Project.py" line="3410" />
+      <location filename="../Project.py" line="3607" />
+      <location filename="../Project.py" line="3573" />
+      <location filename="../Project.py" line="3538" />
+      <location filename="../Project.py" line="3492" />
       <source>
 Message catalogs updated successfully.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="3500" />
-      <location filename="../Project.py" line="3423" />
+      <location filename="../Project.py" line="3587" />
+      <location filename="../Project.py" line="3506" />
       <source>Updating message catalogs (keeping obsolete messages)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="3584" />
-      <location filename="../Project.py" line="3532" />
+      <location filename="../Project.py" line="3675" />
+      <location filename="../Project.py" line="3621" />
       <source>Compiling message catalogs</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="3604" />
-      <location filename="../Project.py" line="3565" />
+      <location filename="../Project.py" line="3696" />
+      <location filename="../Project.py" line="3655" />
       <source>
 Message catalogs compiled successfully.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="3634" />
+      <location filename="../Project.py" line="3727" />
       <source>The translations editor process ({0}) could not be started.</source>
       <translation type="unfinished" />
     </message>
@@ -2015,9 +2041,9 @@
   <context>
     <name>ProjectDjangoPlugin</name>
     <message>
-      <location filename="../../PluginProjectDjango.py" line="439" />
-      <location filename="../../PluginProjectDjango.py" line="203" />
-      <location filename="../../PluginProjectDjango.py" line="92" />
+      <location filename="../../PluginProjectDjango.py" line="442" />
+      <location filename="../../PluginProjectDjango.py" line="206" />
+      <location filename="../../PluginProjectDjango.py" line="95" />
       <source>Django</source>
       <translation type="unfinished" />
     </message>
--- a/ProjectDjango/i18n/django_en.ts	Thu Dec 26 14:24:34 2024 +0100
+++ b/ProjectDjango/i18n/django_en.ts	Fri Dec 27 14:17:37 2024 +0100
@@ -865,1149 +865,1175 @@
   <context>
     <name>Project</name>
     <message>
-      <location filename="../Project.py" line="180" />
+      <location filename="../Project.py" line="181" />
       <source>Current Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="182" />
+      <location filename="../Project.py" line="183" />
       <source>Selects the current project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="184" />
+      <location filename="../Project.py" line="185" />
       <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" />
     </message>
     <message>
-      <location filename="../Project.py" line="199" />
+      <location filename="../Project.py" line="200" />
       <source>Start Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="200" />
+      <location filename="../Project.py" line="201" />
       <source>Start &amp;Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="206" />
+      <location filename="../Project.py" line="207" />
       <source>Starts a new Django project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="208" />
+      <location filename="../Project.py" line="209" />
       <source>&lt;b&gt;Start Project&lt;/b&gt;&lt;p&gt;Starts a new Django project using "django-admin.py startproject".&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="218" />
-      <source>Start Application (global)</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project.py" line="219" />
+      <source>Start Application (global)</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project.py" line="220" />
       <source>Start Application (&amp;global)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="226" />
+      <location filename="../Project.py" line="227" />
       <source>Starts a new global Django application</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="229" />
+      <location filename="../Project.py" line="230" />
       <source>&lt;b&gt;Start Application (global)&lt;/b&gt;&lt;p&gt;Starts a new global Django application using "django-admin.py startapp".&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="239" />
-      <source>Start Application (local)</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project.py" line="240" />
+      <source>Start Application (local)</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project.py" line="241" />
       <source>Start Application (&amp;local)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="247" />
+      <location filename="../Project.py" line="248" />
       <source>Starts a new local Django application</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="250" />
+      <location filename="../Project.py" line="251" />
       <source>&lt;b&gt;Start Application (local)&lt;/b&gt;&lt;p&gt;Starts a new local Django application using "manage.py startapp".&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="264" />
+      <location filename="../Project.py" line="265" />
       <source>Run Server</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="265" />
+      <location filename="../Project.py" line="266" />
       <source>Run &amp;Server</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="271" />
+      <location filename="../Project.py" line="272" />
       <source>Starts the Django Web server</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="273" />
+      <location filename="../Project.py" line="274" />
       <source>&lt;b&gt;Run Server&lt;/b&gt;&lt;p&gt;Starts the Django Web server using "manage.py runserver".&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="2266" />
-      <location filename="../Project.py" line="283" />
+      <location filename="../Project.py" line="2321" />
+      <location filename="../Project.py" line="284" />
       <source>Run Web-Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="284" />
+      <location filename="../Project.py" line="285" />
       <source>Run &amp;Web-Browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="291" />
+      <location filename="../Project.py" line="292" />
       <source>Starts the default Web-Browser with the URL of the Django Web server</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="297" />
+      <location filename="../Project.py" line="298" />
       <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" />
     </message>
     <message>
-      <location filename="../Project.py" line="2963" />
-      <location filename="../Project.py" line="311" />
+      <location filename="../Project.py" line="3034" />
+      <location filename="../Project.py" line="312" />
       <source>Create Cache Tables</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="312" />
+      <location filename="../Project.py" line="313" />
       <source>C&amp;reate Cache Tables</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="319" />
+      <location filename="../Project.py" line="320" />
       <source>Creates the tables needed to use the SQL cache backend</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="322" />
+      <location filename="../Project.py" line="323" />
       <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" />
     </message>
     <message>
-      <location filename="../Project.py" line="336" />
+      <location filename="../Project.py" line="337" />
       <source>Help</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="336" />
+      <location filename="../Project.py" line="337" />
       <source>&amp;Help</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="338" />
+      <location filename="../Project.py" line="339" />
       <source>Shows the Django help index</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="340" />
+      <location filename="../Project.py" line="341" />
       <source>&lt;b&gt;Help&lt;/b&gt;&lt;p&gt;Shows the Django help index page.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="1585" />
-      <location filename="../Project.py" line="350" />
+      <location filename="../Project.py" line="1635" />
+      <location filename="../Project.py" line="351" />
       <source>About Django</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="351" />
+      <location filename="../Project.py" line="352" />
       <source>About D&amp;jango</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="357" />
+      <location filename="../Project.py" line="358" />
       <source>Shows some information about Django</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="359" />
+      <location filename="../Project.py" line="360" />
       <source>&lt;b&gt;About Django&lt;/b&gt;&lt;p&gt;Shows some information about Django.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="3680" />
+      <location filename="../Project.py" line="3774" />
+      <location filename="../Project.py" line="374" />
       <location filename="../Project.py" line="373" />
-      <location filename="../Project.py" line="372" />
       <source>Check Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="380" />
+      <location filename="../Project.py" line="381" />
       <source>Inspects the Django project for common problems</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="383" />
+      <location filename="../Project.py" line="384" />
       <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" />
     </message>
     <message>
-      <location filename="../Project.py" line="404" />
+      <location filename="../Project.py" line="405" />
       <source>Current Database</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="406" />
+      <location filename="../Project.py" line="407" />
       <source>Selects the current database</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="408" />
+      <location filename="../Project.py" line="409" />
       <source>&lt;b&gt;Current Database&lt;/b&gt;&lt;p&gt;Selects the database name to be used by all database actions. An empty database name indicates to use the default name.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="420" />
+      <location filename="../Project.py" line="421" />
       <source>Introspect</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="421" />
+      <location filename="../Project.py" line="422" />
       <source>&amp;Introspect</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="428" />
+      <location filename="../Project.py" line="429" />
       <source>Introspects the database tables and outputs a Django model module</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="431" />
+      <location filename="../Project.py" line="432" />
       <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" />
     </message>
     <message>
-      <location filename="../Project.py" line="441" />
+      <location filename="../Project.py" line="442" />
       <source>Flush</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="441" />
+      <location filename="../Project.py" line="442" />
       <source>&amp;Flush</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="444" />
+      <location filename="../Project.py" line="445" />
       <source>Returns all database tables to the state just after their installation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="450" />
+      <location filename="../Project.py" line="451" />
       <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" />
     </message>
     <message>
-      <location filename="../Project.py" line="460" />
-      <source>Start Client Console</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project.py" line="461" />
+      <source>Start Client Console</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project.py" line="462" />
       <source>Start &amp;Client Console</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="468" />
+      <location filename="../Project.py" line="469" />
       <source>Starts a console window for the database client</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="471" />
+      <location filename="../Project.py" line="472" />
       <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" />
     </message>
     <message>
-      <location filename="../Project.py" line="2512" />
-      <location filename="../Project.py" line="2415" />
-      <location filename="../Project.py" line="484" />
+      <location filename="../Project.py" line="2571" />
+      <location filename="../Project.py" line="2470" />
+      <location filename="../Project.py" line="485" />
       <source>Flush Database</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="485" />
+      <location filename="../Project.py" line="486" />
       <source>&amp;Flush Database</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="492" />
+      <location filename="../Project.py" line="493" />
       <source>Prints a list of statements to return all database tables to the state just after their installation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="498" />
+      <location filename="../Project.py" line="499" />
       <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" />
     </message>
     <message>
-      <location filename="../Project.py" line="2519" />
-      <location filename="../Project.py" line="508" />
+      <location filename="../Project.py" line="2578" />
+      <location filename="../Project.py" line="509" />
       <source>Reset Sequences</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="509" />
+      <location filename="../Project.py" line="510" />
       <source>Reset &amp;Sequences</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="516" />
+      <location filename="../Project.py" line="517" />
       <source>Prints the SQL statements for resetting sequences for one or more applications</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="522" />
+      <location filename="../Project.py" line="523" />
       <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" />
     </message>
     <message>
-      <location filename="../Project.py" line="532" />
+      <location filename="../Project.py" line="533" />
       <source>Apply Migration</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="533" />
+      <location filename="../Project.py" line="534" />
       <source>&amp;Apply Migration</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="540" />
+      <location filename="../Project.py" line="541" />
       <source>Prints the SQL statements to apply a migration of an application</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="543" />
+      <location filename="../Project.py" line="544" />
       <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" />
     </message>
     <message>
-      <location filename="../Project.py" line="553" />
+      <location filename="../Project.py" line="554" />
       <source>Unapply Migration</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="554" />
+      <location filename="../Project.py" line="555" />
       <source>&amp;Unapply Migration</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="561" />
+      <location filename="../Project.py" line="562" />
       <source>Prints the SQL statements to unapply a migration of an application</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="566" />
+      <location filename="../Project.py" line="567" />
       <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" />
     </message>
     <message>
-      <location filename="../Project.py" line="2862" />
-      <location filename="../Project.py" line="582" />
+      <location filename="../Project.py" line="2932" />
+      <location filename="../Project.py" line="583" />
       <source>Diff Settings</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="583" />
+      <location filename="../Project.py" line="584" />
       <source>&amp;Diff Settings</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="590" />
+      <location filename="../Project.py" line="591" />
       <source>Shows the modification made to the settings</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="593" />
+      <location filename="../Project.py" line="594" />
       <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" />
     </message>
     <message>
-      <location filename="../Project.py" line="602" />
-      <source>Start Python Console</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project.py" line="603" />
+      <source>Start Python Console</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project.py" line="604" />
       <source>Start &amp;Python Console</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="610" />
+      <location filename="../Project.py" line="611" />
       <source>Starts a Python interactive interpreter</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="613" />
+      <location filename="../Project.py" line="614" />
       <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" />
     </message>
     <message>
-      <location filename="../Project.py" line="2924" />
-      <location filename="../Project.py" line="622" />
+      <location filename="../Project.py" line="2994" />
+      <location filename="../Project.py" line="623" />
       <source>Send Test Email</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="623" />
+      <location filename="../Project.py" line="624" />
       <source>Send Test &amp;Email</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="629" />
+      <location filename="../Project.py" line="630" />
       <source>Send a test email through Django</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="631" />
+      <location filename="../Project.py" line="632" />
       <source>&lt;b&gt;Send Test Email&lt;/b&gt;&lt;p&gt;Sends a test email to confirm email sending through Django is working.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="2994" />
-      <location filename="../Project.py" line="645" />
+      <location filename="../Project.py" line="3067" />
+      <location filename="../Project.py" line="646" />
       <source>Dump Data</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="646" />
+      <location filename="../Project.py" line="647" />
       <source>&amp;Dump Data</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="652" />
+      <location filename="../Project.py" line="653" />
       <source>Dump the database data to a fixture</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="654" />
+      <location filename="../Project.py" line="655" />
       <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" />
     </message>
     <message>
-      <location filename="../Project.py" line="3037" />
-      <location filename="../Project.py" line="660" />
+      <location filename="../Project.py" line="3114" />
+      <location filename="../Project.py" line="661" />
       <source>Load Data</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="661" />
+      <location filename="../Project.py" line="662" />
       <source>&amp;Load Data</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="667" />
+      <location filename="../Project.py" line="668" />
       <source>Load data from fixture files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="669" />
+      <location filename="../Project.py" line="670" />
       <source>&lt;b&gt;Load Data&lt;/b&gt;&lt;p&gt;Load data from fixture files.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="675" />
+      <location filename="../Project.py" line="676" />
       <source>Run Testsuite</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="676" />
+      <location filename="../Project.py" line="677" />
       <source>Run &amp;Testsuite</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="683" />
+      <location filename="../Project.py" line="684" />
       <source>Run the test suite for applications or the whole site</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="686" />
+      <location filename="../Project.py" line="687" />
       <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" />
     </message>
     <message>
+      <location filename="../Project.py" line="697" />
       <location filename="../Project.py" line="696" />
-      <location filename="../Project.py" line="695" />
       <source>Run Testsuite (-Wall)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="703" />
+      <location filename="../Project.py" line="704" />
       <source>Run the test suite for applications or the whole site with activated deprecation warnings</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="709" />
+      <location filename="../Project.py" line="710" />
       <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" />
     </message>
     <message>
-      <location filename="../Project.py" line="721" />
+      <location filename="../Project.py" line="722" />
       <source>Run Testserver</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="722" />
+      <location filename="../Project.py" line="723" />
       <source>Run Test&amp;server</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="729" />
+      <location filename="../Project.py" line="730" />
       <source>Run a development server with data from a set of fixtures</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="732" />
+      <location filename="../Project.py" line="733" />
       <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" />
     </message>
     <message>
-      <location filename="../Project.py" line="3198" />
-      <location filename="../Project.py" line="746" />
+      <location filename="../Project.py" line="3275" />
+      <location filename="../Project.py" line="747" />
       <source>Change Password</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="747" />
+      <location filename="../Project.py" line="748" />
       <source>Change &amp;Password</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="753" />
+      <location filename="../Project.py" line="754" />
       <source>Change the password of a user</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="755" />
+      <location filename="../Project.py" line="756" />
       <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" />
     </message>
     <message>
-      <location filename="../Project.py" line="764" />
+      <location filename="../Project.py" line="765" />
       <source>Create Superuser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="765" />
+      <location filename="../Project.py" line="766" />
       <source>Create &amp;Superuser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="771" />
+      <location filename="../Project.py" line="772" />
       <source>Create a superuser account</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="773" />
+      <location filename="../Project.py" line="774" />
       <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" />
     </message>
     <message>
-      <location filename="../Project.py" line="3252" />
-      <location filename="../Project.py" line="786" />
+      <location filename="../Project.py" line="3329" />
+      <location filename="../Project.py" line="787" />
       <source>Clear Sessions</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="787" />
+      <location filename="../Project.py" line="788" />
       <source>Clear &amp;Sessions</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="793" />
+      <location filename="../Project.py" line="794" />
       <source>Clear expired sessions</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="795" />
+      <location filename="../Project.py" line="796" />
       <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" />
     </message>
     <message>
-      <location filename="../Project.py" line="808" />
+      <location filename="../Project.py" line="809" />
       <source>Show Migrations</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="809" />
+      <location filename="../Project.py" line="810" />
       <source>&amp;Show Migrations</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="816" />
+      <location filename="../Project.py" line="817" />
       <source>Show a list of available migrations</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="819" />
+      <location filename="../Project.py" line="820" />
       <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" />
     </message>
     <message>
-      <location filename="../Project.py" line="829" />
+      <location filename="../Project.py" line="830" />
       <source>Show Migrations Plan</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="830" />
+      <location filename="../Project.py" line="831" />
       <source>Show Migrations &amp;Plan</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="837" />
+      <location filename="../Project.py" line="838" />
       <source>Show a list with the migrations plan</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="840" />
+      <location filename="../Project.py" line="841" />
       <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" />
     </message>
     <message>
-      <location filename="../Project.py" line="850" />
+      <location filename="../Project.py" line="851" />
       <source>Apply All Migrations</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="851" />
+      <location filename="../Project.py" line="852" />
       <source>&amp;Apply All Migrations</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="857" />
+      <location filename="../Project.py" line="858" />
       <source>Apply all available migrations</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="859" />
+      <location filename="../Project.py" line="860" />
       <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" />
     </message>
     <message>
-      <location filename="../Project.py" line="2630" />
+      <location filename="../Project.py" line="2696" />
+      <location filename="../Project.py" line="870" />
       <location filename="../Project.py" line="869" />
-      <location filename="../Project.py" line="868" />
       <source>Apply Selected Migrations</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="875" />
+      <location filename="../Project.py" line="876" />
       <source>Apply selected migrations</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="877" />
+      <location filename="../Project.py" line="878" />
       <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" />
     </message>
     <message>
-      <location filename="../Project.py" line="2690" />
-      <location filename="../Project.py" line="2683" />
-      <location filename="../Project.py" line="2650" />
-      <location filename="../Project.py" line="887" />
+      <location filename="../Project.py" line="2758" />
+      <location filename="../Project.py" line="2751" />
+      <location filename="../Project.py" line="2718" />
+      <location filename="../Project.py" line="888" />
       <source>Unapply Migrations</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="888" />
+      <location filename="../Project.py" line="889" />
       <source>&amp;Unapply Migrations</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="894" />
+      <location filename="../Project.py" line="895" />
       <source>Unapply all migrations for an app</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="896" />
+      <location filename="../Project.py" line="897" />
       <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" />
     </message>
     <message>
-      <location filename="../Project.py" line="2777" />
-      <location filename="../Project.py" line="906" />
+      <location filename="../Project.py" line="2845" />
+      <location filename="../Project.py" line="907" />
       <source>Make Migrations</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="907" />
+      <location filename="../Project.py" line="908" />
       <source>&amp;Make Migrations</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="914" />
+      <location filename="../Project.py" line="915" />
       <source>Generate migrations for the project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="917" />
+      <location filename="../Project.py" line="918" />
       <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" />
     </message>
     <message>
-      <location filename="../Project.py" line="2826" />
-      <location filename="../Project.py" line="2817" />
-      <location filename="../Project.py" line="926" />
+      <location filename="../Project.py" line="2896" />
+      <location filename="../Project.py" line="2885" />
+      <location filename="../Project.py" line="927" />
       <source>Squash Migrations</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="927" />
+      <location filename="../Project.py" line="928" />
       <source>S&amp;quash Migrations</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="934" />
+      <location filename="../Project.py" line="935" />
       <source>Squash migrations of an application of the project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="937" />
+      <location filename="../Project.py" line="938" />
       <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" />
     </message>
     <message>
-      <location filename="../Project.py" line="955" />
+      <location filename="../Project.py" line="956" />
       <source>D&amp;jango</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="997" />
+      <location filename="../Project.py" line="998" />
       <source>&amp;Database</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="1021" />
+      <location filename="../Project.py" line="1022" />
       <source>Show &amp;SQL</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="1041" />
+      <location filename="../Project.py" line="1042" />
       <source>&amp;Migrations</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="1066" />
+      <location filename="../Project.py" line="1067" />
       <source>&amp;Tools</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="1086" />
+      <location filename="../Project.py" line="1087" />
       <source>T&amp;esting</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="1107" />
+      <location filename="../Project.py" line="1108" />
       <source>&amp;Authorization</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="1124" />
+      <location filename="../Project.py" line="1125" />
       <source>&amp;Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="1172" />
+      <location filename="../Project.py" line="1173" />
       <source>Open with {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="1186" />
+      <location filename="../Project.py" line="1187" />
       <source>New template...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="1196" />
+      <location filename="../Project.py" line="1197" />
       <source>Update all catalogs</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="1201" />
+      <location filename="../Project.py" line="1202" />
       <source>Update selected catalogs</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="1206" />
+      <location filename="../Project.py" line="1207" />
       <source>Update all catalogs (with obsolete)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="1211" />
+      <location filename="../Project.py" line="1212" />
       <source>Update selected catalogs (with obsolete)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="1214" />
+      <location filename="../Project.py" line="1215" />
       <source>Compile all catalogs</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="1219" />
+      <location filename="../Project.py" line="1220" />
       <source>Compile selected catalogs</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="1255" />
+      <location filename="../Project.py" line="1256" />
       <source>HTML Files (*.html);;HTML Files (*.htm);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="1311" />
-      <location filename="../Project.py" line="1280" />
-      <location filename="../Project.py" line="1260" />
+      <location filename="../Project.py" line="1361" />
+      <location filename="../Project.py" line="1296" />
+      <location filename="../Project.py" line="1279" />
+      <location filename="../Project.py" line="1259" />
       <source>New Form</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="1281" />
+      <location filename="../Project.py" line="1280" />
       <source>The file already exists! Overwrite it?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="1312" />
+      <location filename="../Project.py" line="1289" />
+      <source>Base Template</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project.py" line="1290" />
+      <source>Extending Template</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project.py" line="1291" />
+      <source>Standalone Template</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project.py" line="1292" />
+      <source>Empty Template</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project.py" line="1297" />
+      <source>Select a template type:</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project.py" line="1362" />
       <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" />
     </message>
     <message>
-      <location filename="../Project.py" line="1586" />
+      <location filename="../Project.py" line="1636" />
       <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="{1}"&gt;{1}&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="1663" />
+      <location filename="../Project.py" line="1714" />
       <source>Select Applications</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="1664" />
+      <location filename="../Project.py" line="1715" />
       <source>Enter the list of applications separated by spaces.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="2147" />
-      <location filename="../Project.py" line="1850" />
+      <location filename="../Project.py" line="2202" />
+      <location filename="../Project.py" line="1901" />
       <source>Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="1851" />
+      <location filename="../Project.py" line="1902" />
       <source>Application</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="1855" />
+      <location filename="../Project.py" line="1906" />
       <source>Start Django</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="1856" />
+      <location filename="../Project.py" line="1907" />
       <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" />
     </message>
     <message>
-      <location filename="../Project.py" line="1958" />
-      <location filename="../Project.py" line="1886" />
+      <location filename="../Project.py" line="2011" />
+      <location filename="../Project.py" line="1937" />
       <source>Start Django Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="1894" />
+      <location filename="../Project.py" line="1945" />
       <source>&lt;p&gt;The Django project path &lt;b&gt;{0}&lt;/b&gt; exists already. Shall it be removed and recreated?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="1904" />
+      <location filename="../Project.py" line="1955" />
       <source>&lt;p&gt;Please add the files to the eric project manually.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="2005" />
-      <location filename="../Project.py" line="1923" />
+      <location filename="../Project.py" line="2058" />
+      <location filename="../Project.py" line="1974" />
       <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" />
     </message>
     <message>
-      <location filename="../Project.py" line="1934" />
+      <location filename="../Project.py" line="1986" />
       <source>Django project created successfully.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="1959" />
+      <location filename="../Project.py" line="2012" />
       <source>Enter the name of the new Django project.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="1987" />
+      <location filename="../Project.py" line="2040" />
       <source>Start Django Application</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="2023" />
+      <location filename="../Project.py" line="2077" />
       <source>Django application created successfully.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="2036" />
+      <location filename="../Project.py" line="2091" />
       <source>Start Global Django Application</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="2037" />
+      <location filename="../Project.py" line="2092" />
       <source>Enter the name of the new global Django application.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="2058" />
+      <location filename="../Project.py" line="2113" />
       <source>Start Local Django Application</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="2059" />
+      <location filename="../Project.py" line="2114" />
       <source>Enter the name of the new local Django application.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="2109" />
+      <location filename="../Project.py" line="2164" />
       <source>Select Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="2110" />
+      <location filename="../Project.py" line="2165" />
       <source>Select the Django project to work with.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="2145" />
+      <location filename="../Project.py" line="2200" />
       <source>None</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="2151" />
+      <location filename="../Project.py" line="2206" />
       <source>&amp;Current Django project ({0})</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="3633" />
-      <location filename="../Project.py" line="3240" />
-      <location filename="../Project.py" line="3216" />
-      <location filename="../Project.py" line="3167" />
-      <location filename="../Project.py" line="3117" />
-      <location filename="../Project.py" line="2914" />
-      <location filename="../Project.py" line="2460" />
-      <location filename="../Project.py" line="2219" />
+      <location filename="../Project.py" line="3726" />
+      <location filename="../Project.py" line="3317" />
+      <location filename="../Project.py" line="3293" />
+      <location filename="../Project.py" line="3244" />
+      <location filename="../Project.py" line="3194" />
+      <location filename="../Project.py" line="2984" />
+      <location filename="../Project.py" line="2517" />
+      <location filename="../Project.py" line="2274" />
       <source>Process Generation Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="2220" />
+      <location filename="../Project.py" line="2275" />
       <source>The Django server could not be started.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="2267" />
+      <location filename="../Project.py" line="2322" />
       <source>Could not start the web-browser for the url "{0}".</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="2341" />
+      <location filename="../Project.py" line="2396" />
       <source>Database Name</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="2342" />
+      <location filename="../Project.py" line="2397" />
       <source>Select a database name (leave empty for default):</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="2363" />
+      <location filename="../Project.py" line="2418" />
       <source>&lt;default&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="2365" />
-      <source>&amp;Current Database ({0})</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Project.py" line="2386" />
-      <source>Introspect Database</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Project.py" line="2420" />
+      <source>&amp;Current Database ({0})</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project.py" line="2441" />
+      <source>Introspect Database</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project.py" line="2475" />
       <source>Flushing the database will destroy all data. Are you sure?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="2432" />
+      <location filename="../Project.py" line="2488" />
       <source>Database tables flushed successfully.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="3241" />
-      <location filename="../Project.py" line="3217" />
-      <location filename="../Project.py" line="3118" />
-      <location filename="../Project.py" line="2915" />
-      <location filename="../Project.py" line="2461" />
+      <location filename="../Project.py" line="3318" />
+      <location filename="../Project.py" line="3294" />
+      <location filename="../Project.py" line="3195" />
+      <location filename="../Project.py" line="2985" />
+      <location filename="../Project.py" line="2518" />
       <source>The Django process could not be started.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="2563" />
-      <location filename="../Project.py" line="2500" />
+      <location filename="../Project.py" line="2625" />
+      <location filename="../Project.py" line="2557" />
       <source>SQL Files (*.sql)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="2544" />
-      <location filename="../Project.py" line="2540" />
+      <location filename="../Project.py" line="2603" />
+      <location filename="../Project.py" line="2599" />
       <source>SQL Migrate</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="2818" />
-      <location filename="../Project.py" line="2684" />
-      <location filename="../Project.py" line="2631" />
-      <location filename="../Project.py" line="2540" />
+      <location filename="../Project.py" line="2886" />
+      <location filename="../Project.py" line="2752" />
+      <location filename="../Project.py" line="2697" />
+      <location filename="../Project.py" line="2599" />
       <source>No migrations available.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="2652" />
+      <location filename="../Project.py" line="2720" />
       <source>Apply Migrations</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="2691" />
+      <location filename="../Project.py" line="2759" />
       <source>Select an application:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="2948" />
+      <location filename="../Project.py" line="3018" />
       <source>Test Email sent successfully.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="2949" />
+      <location filename="../Project.py" line="3019" />
       <source>Test Email could not be sent.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="2978" />
+      <location filename="../Project.py" line="3050" />
       <source>Cache tables created successfully.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="3018" />
+      <location filename="../Project.py" line="3091" />
       <source>JSON Files (*.json)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="3020" />
+      <location filename="../Project.py" line="3093" />
       <source>XML Files (*.xml)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="3022" />
+      <location filename="../Project.py" line="3095" />
       <source>YAML Files (*.yaml)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="3168" />
+      <location filename="../Project.py" line="3245" />
       <source>The Django test server could not be started.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="3199" />
+      <location filename="../Project.py" line="3276" />
       <source>Enter the name of the user:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="3265" />
+      <location filename="../Project.py" line="3343" />
       <source>Expired sessions cleared successfully.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="3341" />
+      <location filename="../Project.py" line="3420" />
       <source>Initializing message catalog for '{0}'</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="3599" />
-      <location filename="../Project.py" line="3540" />
+      <location filename="../Project.py" line="3690" />
+      <location filename="../Project.py" line="3629" />
+      <location filename="../Project.py" line="3601" />
+      <location filename="../Project.py" line="3567" />
       <location filename="../Project.py" line="3514" />
-      <location filename="../Project.py" line="3482" />
-      <location filename="../Project.py" line="3431" />
-      <location filename="../Project.py" line="3386" />
-      <location filename="../Project.py" line="3355" />
+      <location filename="../Project.py" line="3467" />
+      <location filename="../Project.py" line="3434" />
       <source>No current site selected or no site created yet. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="3360" />
+      <location filename="../Project.py" line="3440" />
       <source>
 Message catalog initialized successfully.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="3467" />
-      <location filename="../Project.py" line="3378" />
+      <location filename="../Project.py" line="3552" />
+      <location filename="../Project.py" line="3459" />
       <source>Updating message catalogs</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="3560" />
-      <location filename="../Project.py" line="3449" />
-      <location filename="../Project.py" line="3405" />
+      <location filename="../Project.py" line="3649" />
+      <location filename="../Project.py" line="3532" />
+      <location filename="../Project.py" line="3486" />
       <source>No locales detected. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="3519" />
-      <location filename="../Project.py" line="3487" />
-      <location filename="../Project.py" line="3454" />
-      <location filename="../Project.py" line="3410" />
+      <location filename="../Project.py" line="3607" />
+      <location filename="../Project.py" line="3573" />
+      <location filename="../Project.py" line="3538" />
+      <location filename="../Project.py" line="3492" />
       <source>
 Message catalogs updated successfully.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="3500" />
-      <location filename="../Project.py" line="3423" />
+      <location filename="../Project.py" line="3587" />
+      <location filename="../Project.py" line="3506" />
       <source>Updating message catalogs (keeping obsolete messages)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="3584" />
-      <location filename="../Project.py" line="3532" />
+      <location filename="../Project.py" line="3675" />
+      <location filename="../Project.py" line="3621" />
       <source>Compiling message catalogs</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="3604" />
-      <location filename="../Project.py" line="3565" />
+      <location filename="../Project.py" line="3696" />
+      <location filename="../Project.py" line="3655" />
       <source>
 Message catalogs compiled successfully.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="3634" />
+      <location filename="../Project.py" line="3727" />
       <source>The translations editor process ({0}) could not be started.</source>
       <translation type="unfinished" />
     </message>
@@ -2015,9 +2041,9 @@
   <context>
     <name>ProjectDjangoPlugin</name>
     <message>
-      <location filename="../../PluginProjectDjango.py" line="439" />
-      <location filename="../../PluginProjectDjango.py" line="203" />
-      <location filename="../../PluginProjectDjango.py" line="92" />
+      <location filename="../../PluginProjectDjango.py" line="442" />
+      <location filename="../../PluginProjectDjango.py" line="206" />
+      <location filename="../../PluginProjectDjango.py" line="95" />
       <source>Django</source>
       <translation type="unfinished" />
     </message>
--- a/ProjectDjango/i18n/django_es.ts	Thu Dec 26 14:24:34 2024 +0100
+++ b/ProjectDjango/i18n/django_es.ts	Fri Dec 27 14:17:37 2024 +0100
@@ -865,1153 +865,1179 @@
   <context>
     <name>Project</name>
     <message>
-      <location filename="../Project.py" line="180" />
+      <location filename="../Project.py" line="181" />
       <source>Current Project</source>
       <translation>Proyecto actual</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="182" />
+      <location filename="../Project.py" line="183" />
       <source>Selects the current project</source>
       <translation>Selecciona el proyecto actual</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="184" />
+      <location filename="../Project.py" line="185" />
       <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="199" />
+      <location filename="../Project.py" line="200" />
       <source>Start Project</source>
       <translation>Iniciar Proyecto</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="200" />
+      <location filename="../Project.py" line="201" />
       <source>Start &amp;Project</source>
       <translation>Iniciar &amp;Proyecto</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="206" />
+      <location filename="../Project.py" line="207" />
       <source>Starts a new Django project</source>
       <translation>Inicia un nuevo proyecto Django</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="208" />
+      <location filename="../Project.py" line="209" />
       <source>&lt;b&gt;Start Project&lt;/b&gt;&lt;p&gt;Starts a new Django project using "django-admin.py startproject".&lt;/p&gt;</source>
       <translation>&lt;b&gt;Iniciar Proyecto&lt;/b&gt;&lt;p&gt;Inicia un nuevo proyecto Django utilizando  "django-admin.py startproject".&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="218" />
+      <location filename="../Project.py" line="219" />
       <source>Start Application (global)</source>
       <translation>Iniciar Aplicación (global)</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="219" />
+      <location filename="../Project.py" line="220" />
       <source>Start Application (&amp;global)</source>
       <translation>Iniciar Aplicación (&amp;global)</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="226" />
+      <location filename="../Project.py" line="227" />
       <source>Starts a new global Django application</source>
       <translation>Inicia una nueva aplicación global Django</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="229" />
+      <location filename="../Project.py" line="230" />
       <source>&lt;b&gt;Start Application (global)&lt;/b&gt;&lt;p&gt;Starts a new global Django application using "django-admin.py startapp".&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 "django-admin.py startapp".&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="239" />
+      <location filename="../Project.py" line="240" />
       <source>Start Application (local)</source>
       <translation>Iniciar Aplicación (local)</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="240" />
+      <location filename="../Project.py" line="241" />
       <source>Start Application (&amp;local)</source>
       <translation>Iniciar Aplicación (&amp;local)</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="247" />
+      <location filename="../Project.py" line="248" />
       <source>Starts a new local Django application</source>
       <translation>Inicia una nueva aplicación local Django</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="250" />
+      <location filename="../Project.py" line="251" />
       <source>&lt;b&gt;Start Application (local)&lt;/b&gt;&lt;p&gt;Starts a new local Django application using "manage.py startapp".&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 "manage.py startapp".&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="264" />
+      <location filename="../Project.py" line="265" />
       <source>Run Server</source>
       <translation>Ejecutar Servidor</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="265" />
+      <location filename="../Project.py" line="266" />
       <source>Run &amp;Server</source>
       <translation>Ejecutar &amp;Servidor</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="271" />
+      <location filename="../Project.py" line="272" />
       <source>Starts the Django Web server</source>
       <translation>Inicia el servidor Web Django</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="273" />
+      <location filename="../Project.py" line="274" />
       <source>&lt;b&gt;Run Server&lt;/b&gt;&lt;p&gt;Starts the Django Web server using "manage.py runserver".&lt;/p&gt;</source>
       <translation>&lt;b&gt;Iniciar Servidor&lt;/b&gt;&lt;p&gt;Inicia el servidor Web Django utilizando  "manage.py runserver".&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="2266" />
-      <location filename="../Project.py" line="283" />
+      <location filename="../Project.py" line="2321" />
+      <location filename="../Project.py" line="284" />
       <source>Run Web-Browser</source>
       <translation>Ejecutar Navegador Web</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="284" />
+      <location filename="../Project.py" line="285" />
       <source>Run &amp;Web-Browser</source>
       <translation>Ejecutar Navegador &amp;Web</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="291" />
+      <location filename="../Project.py" line="292" />
       <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="297" />
+      <location filename="../Project.py" line="298" />
       <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="2963" />
-      <location filename="../Project.py" line="311" />
+      <location filename="../Project.py" line="3034" />
+      <location filename="../Project.py" line="312" />
       <source>Create Cache Tables</source>
       <translation>Crear Tablas de Caché</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="312" />
+      <location filename="../Project.py" line="313" />
       <source>C&amp;reate Cache Tables</source>
       <translation>C&amp;rear Tablas de Caché</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="319" />
+      <location filename="../Project.py" line="320" />
       <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="322" />
+      <location filename="../Project.py" line="323" />
       <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="336" />
+      <location filename="../Project.py" line="337" />
       <source>Help</source>
       <translation>Ayuda</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="336" />
+      <location filename="../Project.py" line="337" />
       <source>&amp;Help</source>
       <translation>&amp;Ayuda</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="338" />
+      <location filename="../Project.py" line="339" />
       <source>Shows the Django help index</source>
       <translation>Muestra el índice de ayuda de Django</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="340" />
+      <location filename="../Project.py" line="341" />
       <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="1585" />
-      <location filename="../Project.py" line="350" />
+      <location filename="../Project.py" line="1635" />
+      <location filename="../Project.py" line="351" />
       <source>About Django</source>
       <translation>Acerca de Django</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="351" />
+      <location filename="../Project.py" line="352" />
       <source>About D&amp;jango</source>
       <translation>Acerca de D&amp;jango</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="357" />
+      <location filename="../Project.py" line="358" />
       <source>Shows some information about Django</source>
       <translation>Muestra información sobre Django</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="359" />
+      <location filename="../Project.py" line="360" />
       <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="3680" />
+      <location filename="../Project.py" line="3774" />
+      <location filename="../Project.py" line="374" />
       <location filename="../Project.py" line="373" />
-      <location filename="../Project.py" line="372" />
       <source>Check Project</source>
       <translation>Comprobar Proyecto</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="380" />
+      <location filename="../Project.py" line="381" />
       <source>Inspects the Django project for common problems</source>
       <translation>Inspecciona el proyecto Django para problemas comunes</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="383" />
+      <location filename="../Project.py" line="384" />
       <source>&lt;b&gt;Check Project&lt;/b&gt;&lt;p&gt;This inspects the Django project for common problems.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Comprobar Proyecto&lt;/b&gt;&lt;p&gt;Inspecciona el proyecto Django para problemas comunes.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="404" />
+      <location filename="../Project.py" line="405" />
       <source>Current Database</source>
       <translation>Base de Datos Actual</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="406" />
+      <location filename="../Project.py" line="407" />
       <source>Selects the current database</source>
       <translation>Selecciona la base de datos actual</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="408" />
+      <location filename="../Project.py" line="409" />
       <source>&lt;b&gt;Current Database&lt;/b&gt;&lt;p&gt;Selects the database name to be used by all database actions. An empty database name indicates to use the default name.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Base de Datos Actual&lt;/b&gt;&lt;p&gt;Selecciona el nombre de la base de datos para utilizar en todas las acciones de base de datos. Un nombre de base de datos vacío indica utilizar el nombre por defecto.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="420" />
+      <location filename="../Project.py" line="421" />
       <source>Introspect</source>
       <translation>Introspección</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="421" />
+      <location filename="../Project.py" line="422" />
       <source>&amp;Introspect</source>
       <translation>&amp;Introspección</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="428" />
+      <location filename="../Project.py" line="429" />
       <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="431" />
+      <location filename="../Project.py" line="432" />
       <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="441" />
+      <location filename="../Project.py" line="442" />
       <source>Flush</source>
       <translation>Flush</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="441" />
+      <location filename="../Project.py" line="442" />
       <source>&amp;Flush</source>
       <translation>&amp;Flush</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="444" />
+      <location filename="../Project.py" line="445" />
       <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="450" />
+      <location filename="../Project.py" line="451" />
       <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="460" />
+      <location filename="../Project.py" line="461" />
       <source>Start Client Console</source>
       <translation>Iniciar Consola de Cliente</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="461" />
+      <location filename="../Project.py" line="462" />
       <source>Start &amp;Client Console</source>
       <translation>Iniciar Consola de &amp;Cliente</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="468" />
+      <location filename="../Project.py" line="469" />
       <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="471" />
+      <location filename="../Project.py" line="472" />
       <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="2512" />
-      <location filename="../Project.py" line="2415" />
-      <location filename="../Project.py" line="484" />
+      <location filename="../Project.py" line="2571" />
+      <location filename="../Project.py" line="2470" />
+      <location filename="../Project.py" line="485" />
       <source>Flush Database</source>
       <translation>Hacer Flush de la base de datos</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="485" />
+      <location filename="../Project.py" line="486" />
       <source>&amp;Flush Database</source>
       <translation>Hacer &amp;Flush de la base de datos</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="492" />
+      <location filename="../Project.py" line="493" />
       <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="498" />
+      <location filename="../Project.py" line="499" />
       <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="2519" />
-      <location filename="../Project.py" line="508" />
+      <location filename="../Project.py" line="2578" />
+      <location filename="../Project.py" line="509" />
       <source>Reset Sequences</source>
       <translation>Resetear Secuencias</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="509" />
+      <location filename="../Project.py" line="510" />
       <source>Reset &amp;Sequences</source>
       <translation>Resetear &amp;Secuencias</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="516" />
+      <location filename="../Project.py" line="517" />
       <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="522" />
+      <location filename="../Project.py" line="523" />
       <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="532" />
+      <location filename="../Project.py" line="533" />
       <source>Apply Migration</source>
       <translation>Aplicar Migración</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="533" />
+      <location filename="../Project.py" line="534" />
       <source>&amp;Apply Migration</source>
       <translation>&amp;Aplicar Migración</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="540" />
+      <location filename="../Project.py" line="541" />
       <source>Prints the SQL statements to apply a migration of an application</source>
       <translation>Imprime las sentencias SQL para aplicar una migración de una aplicación</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="543" />
+      <location filename="../Project.py" line="544" />
       <source>&lt;b&gt;Apply Migration&lt;/b&gt;&lt;p&gt;Prints the SQL statements to apply a migration of an application.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Aplicar Migración&lt;/b&gt;&lt;p&gt;Imprime las sentencias SQL para aplicar una migración de una aplicación.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="553" />
+      <location filename="../Project.py" line="554" />
       <source>Unapply Migration</source>
       <translation>Deshacer Aplicar Migración</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="554" />
+      <location filename="../Project.py" line="555" />
       <source>&amp;Unapply Migration</source>
       <translation>Des&amp;hacer Aplicar Migración</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="561" />
+      <location filename="../Project.py" line="562" />
       <source>Prints the SQL statements to unapply a migration of an application</source>
       <translation>Imprime las sentencias SQL para deshacer aplicar la migración de una aplicación</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="566" />
+      <location filename="../Project.py" line="567" />
       <source>&lt;b&gt;Unapply Migration&lt;/b&gt;&lt;p&gt;Prints the SQL statements to unapply a migration of an application.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Deshacer aplicar Migración&lt;/b&gt;&lt;p&gt;Imprime las sentencias SQL para deshacer aplicar una migración de una aplicación.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="2862" />
-      <location filename="../Project.py" line="582" />
+      <location filename="../Project.py" line="2932" />
+      <location filename="../Project.py" line="583" />
       <source>Diff Settings</source>
       <translation>Configuración de Diff</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="583" />
+      <location filename="../Project.py" line="584" />
       <source>&amp;Diff Settings</source>
       <translation>Configuración de &amp;Diff</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="590" />
+      <location filename="../Project.py" line="591" />
       <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="593" />
+      <location filename="../Project.py" line="594" />
       <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="602" />
+      <location filename="../Project.py" line="603" />
       <source>Start Python Console</source>
       <translation>Iniciar Consola de Python</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="603" />
+      <location filename="../Project.py" line="604" />
       <source>Start &amp;Python Console</source>
       <translation>Iniciar Consola de &amp;Python</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="610" />
+      <location filename="../Project.py" line="611" />
       <source>Starts a Python interactive interpreter</source>
       <translation>Inicia un intérprete interactivo de Python</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="613" />
+      <location filename="../Project.py" line="614" />
       <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="2924" />
-      <location filename="../Project.py" line="622" />
+      <location filename="../Project.py" line="2994" />
+      <location filename="../Project.py" line="623" />
       <source>Send Test Email</source>
       <translation>Enviar Email de Prueba</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="623" />
+      <location filename="../Project.py" line="624" />
       <source>Send Test &amp;Email</source>
       <translation>Enviar &amp;Email de Prueba</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="629" />
+      <location filename="../Project.py" line="630" />
       <source>Send a test email through Django</source>
       <translation>Enviar un email de prueba a través de Django</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="631" />
+      <location filename="../Project.py" line="632" />
       <source>&lt;b&gt;Send Test Email&lt;/b&gt;&lt;p&gt;Sends a test email to confirm email sending through Django is working.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Enviar Email de Prueba&lt;/b&gt;&lt;p&gt;Envía un email de prueba para confirmar que el envío de email a través de Django funciona correctamente.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="2994" />
-      <location filename="../Project.py" line="645" />
+      <location filename="../Project.py" line="3067" />
+      <location filename="../Project.py" line="646" />
       <source>Dump Data</source>
       <translation>Volcado de Datos</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="646" />
+      <location filename="../Project.py" line="647" />
       <source>&amp;Dump Data</source>
       <translation>&amp;Volcado de Datos</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="652" />
+      <location filename="../Project.py" line="653" />
       <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="654" />
+      <location filename="../Project.py" line="655" />
       <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="3037" />
-      <location filename="../Project.py" line="660" />
+      <location filename="../Project.py" line="3114" />
+      <location filename="../Project.py" line="661" />
       <source>Load Data</source>
       <translation>Cargar Datos</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="661" />
+      <location filename="../Project.py" line="662" />
       <source>&amp;Load Data</source>
       <translation>&amp;Cargar Datos</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="667" />
+      <location filename="../Project.py" line="668" />
       <source>Load data from fixture files</source>
       <translation>Cargar datos desde archivos de fixture</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="669" />
+      <location filename="../Project.py" line="670" />
       <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="675" />
+      <location filename="../Project.py" line="676" />
       <source>Run Testsuite</source>
       <translation>Ejecutar Testsuite</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="676" />
+      <location filename="../Project.py" line="677" />
       <source>Run &amp;Testsuite</source>
       <translation>Ejecutar &amp;Testsuite</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="683" />
+      <location filename="../Project.py" line="684" />
       <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="686" />
+      <location filename="../Project.py" line="687" />
       <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="697" />
       <location filename="../Project.py" line="696" />
-      <location filename="../Project.py" line="695" />
       <source>Run Testsuite (-Wall)</source>
       <translation>Ejecutar suite de Tests (-Wall)</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="703" />
+      <location filename="../Project.py" line="704" />
       <source>Run the test suite for applications or the whole site with activated deprecation warnings</source>
       <translation>Ejecutar suite de tests para aplicaciones o el site completo con advertencias de deprecación activadas</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="709" />
+      <location filename="../Project.py" line="710" />
       <source>&lt;b&gt;Run Testsuite (-Wall)&lt;/b&gt;&lt;p&gt;Run the test suite for applications or the whole site with activated deprecation warnings.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Ejecutar suite de Tests (-Wall)&lt;/b&gt;&lt;p&gt;Ejecuta la suite de tests para aplicaciones o el site completo con advertencias de deprecación activadas.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="721" />
+      <location filename="../Project.py" line="722" />
       <source>Run Testserver</source>
       <translation>Ejecutar Testserver</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="722" />
+      <location filename="../Project.py" line="723" />
       <source>Run Test&amp;server</source>
       <translation>Ejecutar Test&amp;server</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="729" />
+      <location filename="../Project.py" line="730" />
       <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="732" />
+      <location filename="../Project.py" line="733" />
       <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="3198" />
-      <location filename="../Project.py" line="746" />
+      <location filename="../Project.py" line="3275" />
+      <location filename="../Project.py" line="747" />
       <source>Change Password</source>
       <translation>Cambiar Contraseña</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="747" />
+      <location filename="../Project.py" line="748" />
       <source>Change &amp;Password</source>
       <translation>Cambiar C&amp;ontraseña</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="753" />
+      <location filename="../Project.py" line="754" />
       <source>Change the password of a user</source>
       <translation>Cambiar la contraseña de un usuario</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="755" />
+      <location filename="../Project.py" line="756" />
       <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="764" />
+      <location filename="../Project.py" line="765" />
       <source>Create Superuser</source>
       <translation>Crear Superusuario</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="765" />
+      <location filename="../Project.py" line="766" />
       <source>Create &amp;Superuser</source>
       <translation>Crear &amp;Superusuario</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="771" />
+      <location filename="../Project.py" line="772" />
       <source>Create a superuser account</source>
       <translation>Crear una cuenta de superusuario</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="773" />
+      <location filename="../Project.py" line="774" />
       <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="3252" />
-      <location filename="../Project.py" line="786" />
+      <location filename="../Project.py" line="3329" />
+      <location filename="../Project.py" line="787" />
       <source>Clear Sessions</source>
       <translation>Limpiar Sesiones</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="787" />
+      <location filename="../Project.py" line="788" />
       <source>Clear &amp;Sessions</source>
       <translation>Limpiar &amp;Sesiones</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="793" />
+      <location filename="../Project.py" line="794" />
       <source>Clear expired sessions</source>
       <translation>Limpiar sesiones expiradas</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="795" />
+      <location filename="../Project.py" line="796" />
       <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="808" />
+      <location filename="../Project.py" line="809" />
       <source>Show Migrations</source>
       <translation>Mostrar Migraciones</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="809" />
+      <location filename="../Project.py" line="810" />
       <source>&amp;Show Migrations</source>
       <translation>Mo&amp;strar Migraciones</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="816" />
+      <location filename="../Project.py" line="817" />
       <source>Show a list of available migrations</source>
       <translation>Mostrar una lista de migraciones disponibles</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="819" />
+      <location filename="../Project.py" line="820" />
       <source>&lt;b&gt;Show Migrations&lt;/b&gt;&lt;p&gt;This shows a list of available migrations of the Django project and their status.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Mostrar Migraciones&lt;/b&gt;&lt;p&gt;Muestra una lista de migraciones disponibles para el proyecto Django y su estado.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="829" />
+      <location filename="../Project.py" line="830" />
       <source>Show Migrations Plan</source>
       <translation>Mostrar Plan de Migraciones</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="830" />
+      <location filename="../Project.py" line="831" />
       <source>Show Migrations &amp;Plan</source>
       <translation>Mostrar &amp;Plan de Migraciones</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="837" />
+      <location filename="../Project.py" line="838" />
       <source>Show a list with the migrations plan</source>
       <translation>Mostrar una lista con el plan de migraciones</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="840" />
+      <location filename="../Project.py" line="841" />
       <source>&lt;b&gt;Show Migrations Plan&lt;/b&gt;&lt;p&gt;This shows a list with the migrations plan of the Django project.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Mostrar Plan de Migraciones&lt;/b&gt;&lt;p&gt;Muestra una lista con el plan de migraciones del proyecto Django.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="850" />
+      <location filename="../Project.py" line="851" />
       <source>Apply All Migrations</source>
       <translation>Aplicar Todas las Migraciones</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="851" />
+      <location filename="../Project.py" line="852" />
       <source>&amp;Apply All Migrations</source>
       <translation>&amp;Aplicar Todas las Migraciones</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="857" />
+      <location filename="../Project.py" line="858" />
       <source>Apply all available migrations</source>
       <translation>Aplicar todas las migraciones disponibles</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="859" />
+      <location filename="../Project.py" line="860" />
       <source>&lt;b&gt;Apply All Migrations&lt;/b&gt;&lt;p&gt;This applies all migrations of the Django project.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Aplicar Todas las Migraciones&lt;/b&gt;&lt;p&gt;Aplica todas las migraciones del proyecto Django.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="2630" />
+      <location filename="../Project.py" line="2696" />
+      <location filename="../Project.py" line="870" />
       <location filename="../Project.py" line="869" />
-      <location filename="../Project.py" line="868" />
       <source>Apply Selected Migrations</source>
       <translation>Aplicar Migraciones Seleccionadas</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="875" />
+      <location filename="../Project.py" line="876" />
       <source>Apply selected migrations</source>
       <translation>Aplicar migraciones seleccionadas</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="877" />
+      <location filename="../Project.py" line="878" />
       <source>&lt;b&gt;Apply Selected Migrations&lt;/b&gt;&lt;p&gt;This applies selected migrations of the Django project.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Aplicar Migraciones Seleccionadas&lt;/b&gt;&lt;p&gt;Aplica las migraciones seleccionadas del proyecto Django.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="2690" />
-      <location filename="../Project.py" line="2683" />
-      <location filename="../Project.py" line="2650" />
-      <location filename="../Project.py" line="887" />
+      <location filename="../Project.py" line="2758" />
+      <location filename="../Project.py" line="2751" />
+      <location filename="../Project.py" line="2718" />
+      <location filename="../Project.py" line="888" />
       <source>Unapply Migrations</source>
       <translation>Deshacer Aplicar Migraciones</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="888" />
+      <location filename="../Project.py" line="889" />
       <source>&amp;Unapply Migrations</source>
       <translation>Des&amp;hacer Aplicar Migraciones</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="894" />
+      <location filename="../Project.py" line="895" />
       <source>Unapply all migrations for an app</source>
       <translation>Deshacer aplicar todas las migraciones para una app</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="896" />
+      <location filename="../Project.py" line="897" />
       <source>&lt;b&gt;Unapply Migrations&lt;/b&gt;&lt;p&gt;This unapplies all migrations for an app of the Django project.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Deshacer Aplicar Migraciones&lt;/b&gt;&lt;p&gt;Deshace aplicar todas las migraciones para una app del proyecto Django.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="2777" />
-      <location filename="../Project.py" line="906" />
+      <location filename="../Project.py" line="2845" />
+      <location filename="../Project.py" line="907" />
       <source>Make Migrations</source>
       <translation>Hacer Migraciones</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="907" />
+      <location filename="../Project.py" line="908" />
       <source>&amp;Make Migrations</source>
       <translation>Hacer &amp;Migraciones</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="914" />
+      <location filename="../Project.py" line="915" />
       <source>Generate migrations for the project</source>
       <translation>Generar migraciones para el proyecto</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="917" />
+      <location filename="../Project.py" line="918" />
       <source>&lt;b&gt;Make Migrations&lt;/b&gt;&lt;p&gt;This generates migrations for the Django project.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Hacer Migraciones&lt;/b&gt;&lt;p&gt;Genera las migraciones para el proyecto Django.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="2826" />
-      <location filename="../Project.py" line="2817" />
-      <location filename="../Project.py" line="926" />
+      <location filename="../Project.py" line="2896" />
+      <location filename="../Project.py" line="2885" />
+      <location filename="../Project.py" line="927" />
       <source>Squash Migrations</source>
       <translation>Hacer "Squash" de Migraciones</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="927" />
+      <location filename="../Project.py" line="928" />
       <source>S&amp;quash Migrations</source>
       <translation>Hacer "S&amp;quash" de Migraciones</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="934" />
+      <location filename="../Project.py" line="935" />
       <source>Squash migrations of an application of the project</source>
       <translation>Hacer squash de migraciones de una aplicación del proyecto</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="937" />
+      <location filename="../Project.py" line="938" />
       <source>&lt;b&gt;Squash Migrations&lt;/b&gt;&lt;p&gt;This squashes migrations of an application of the Django project.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Hacer Squash de Migraciones&lt;/b&gt;&lt;p&gt;Hace squash de migraciones de una aplicación del proyecto Django.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="955" />
+      <location filename="../Project.py" line="956" />
       <source>D&amp;jango</source>
       <translation>D&amp;jango</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="997" />
+      <location filename="../Project.py" line="998" />
       <source>&amp;Database</source>
       <translation>Base de &amp;Datos</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="1021" />
+      <location filename="../Project.py" line="1022" />
       <source>Show &amp;SQL</source>
       <translation>Mostrar &amp;SQL</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="1041" />
+      <location filename="../Project.py" line="1042" />
       <source>&amp;Migrations</source>
       <translation>&amp;Migraciones</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="1066" />
+      <location filename="../Project.py" line="1067" />
       <source>&amp;Tools</source>
       <translation>Herramien&amp;tas</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="1086" />
+      <location filename="../Project.py" line="1087" />
       <source>T&amp;esting</source>
       <translation>T&amp;esting</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="1107" />
+      <location filename="../Project.py" line="1108" />
       <source>&amp;Authorization</source>
       <translation>&amp;Autorización</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="1124" />
+      <location filename="../Project.py" line="1125" />
       <source>&amp;Session</source>
       <translation>&amp;Sesión</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="1172" />
+      <location filename="../Project.py" line="1173" />
       <source>Open with {0}</source>
       <translation>Abrir con {0}</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="1186" />
+      <location filename="../Project.py" line="1187" />
       <source>New template...</source>
       <translation>Nueva plantilla...</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="1196" />
+      <location filename="../Project.py" line="1197" />
       <source>Update all catalogs</source>
       <translation>Actualizar todos los catálogos</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="1201" />
+      <location filename="../Project.py" line="1202" />
       <source>Update selected catalogs</source>
       <translation>Actualizar los catálogos seleccionados</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="1206" />
+      <location filename="../Project.py" line="1207" />
       <source>Update all catalogs (with obsolete)</source>
       <translation>Acutalizar todos los catálogos (con obsoletos)</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="1211" />
+      <location filename="../Project.py" line="1212" />
       <source>Update selected catalogs (with obsolete)</source>
       <translation>Actualizar los catálogos seleccionados (con obsoletos)</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="1214" />
+      <location filename="../Project.py" line="1215" />
       <source>Compile all catalogs</source>
       <translation>Compilar todos los catálogos</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="1219" />
+      <location filename="../Project.py" line="1220" />
       <source>Compile selected catalogs</source>
       <translation>Compilar los catálogos seleccionados</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="1255" />
+      <location filename="../Project.py" line="1256" />
       <source>HTML Files (*.html);;HTML Files (*.htm);;All Files (*)</source>
       <translation>Archivos HTML (*.html);;Archivos HTML (*.htm);;Todos los Archivos (*)</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="1311" />
-      <location filename="../Project.py" line="1280" />
-      <location filename="../Project.py" line="1260" />
+      <location filename="../Project.py" line="1361" />
+      <location filename="../Project.py" line="1296" />
+      <location filename="../Project.py" line="1279" />
+      <location filename="../Project.py" line="1259" />
       <source>New Form</source>
       <translation>Nuevo Formulario</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="1281" />
+      <location filename="../Project.py" line="1280" />
       <source>The file already exists! Overwrite it?</source>
       <translation>¡El archivo ya existe! ¿Sobreescribirlo?</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="1312" />
+      <location filename="../Project.py" line="1289" />
+      <source>Base Template</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project.py" line="1290" />
+      <source>Extending Template</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project.py" line="1291" />
+      <source>Standalone Template</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project.py" line="1292" />
+      <source>Empty Template</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project.py" line="1297" />
+      <source>Select a template type:</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project.py" line="1362" />
       <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="1586" />
+      <location filename="../Project.py" line="1636" />
       <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="{1}"&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="{1}"&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="1663" />
+      <location filename="../Project.py" line="1714" />
       <source>Select Applications</source>
       <translation>Seleccionar Aplicaciones</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="1664" />
+      <location filename="../Project.py" line="1715" />
       <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="2147" />
-      <location filename="../Project.py" line="1850" />
+      <location filename="../Project.py" line="2202" />
+      <location filename="../Project.py" line="1901" />
       <source>Project</source>
       <translation>Proyecto</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="1851" />
+      <location filename="../Project.py" line="1902" />
       <source>Application</source>
       <translation>Aplicación</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="1855" />
+      <location filename="../Project.py" line="1906" />
       <source>Start Django</source>
       <translation>Iniciar Django</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="1856" />
+      <location filename="../Project.py" line="1907" />
       <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="1958" />
-      <location filename="../Project.py" line="1886" />
+      <location filename="../Project.py" line="2011" />
+      <location filename="../Project.py" line="1937" />
       <source>Start Django Project</source>
       <translation>Iniciar Proyecto Django</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="1894" />
+      <location filename="../Project.py" line="1945" />
       <source>&lt;p&gt;The Django project path &lt;b&gt;{0}&lt;/b&gt; exists already. Shall it be removed and recreated?&lt;/p&gt;</source>
       <translation>&lt;p&gt;La ruta de proyecto Django &lt;b&gt;{0}&lt;/b&gt; ya existealready. ¿Desea eliminarla y recrearla?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="1904" />
+      <location filename="../Project.py" line="1955" />
       <source>&lt;p&gt;Please add the files to the eric project manually.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Por favor, añada los archivos al proyecto eric manualmente.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="2005" />
-      <location filename="../Project.py" line="1923" />
+      <location filename="../Project.py" line="2058" />
+      <location filename="../Project.py" line="1974" />
       <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="1934" />
+      <location filename="../Project.py" line="1986" />
       <source>Django project created successfully.</source>
       <translation>Proyecto Django creado correctamente.</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="1959" />
+      <location filename="../Project.py" line="2012" />
       <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="1987" />
+      <location filename="../Project.py" line="2040" />
       <source>Start Django Application</source>
       <translation>Iniciar Aplicación Django</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="2023" />
+      <location filename="../Project.py" line="2077" />
       <source>Django application created successfully.</source>
       <translation>Aplicación Django creada correctamente.</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="2036" />
+      <location filename="../Project.py" line="2091" />
       <source>Start Global Django Application</source>
       <translation>Iniciar Aplicación Global Django</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="2037" />
+      <location filename="../Project.py" line="2092" />
       <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="2058" />
+      <location filename="../Project.py" line="2113" />
       <source>Start Local Django Application</source>
       <translation>Iniciar Aplicación Local Django</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="2059" />
+      <location filename="../Project.py" line="2114" />
       <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="2109" />
+      <location filename="../Project.py" line="2164" />
       <source>Select Project</source>
       <translation>Seleccionar Proyecto</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="2110" />
+      <location filename="../Project.py" line="2165" />
       <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="2145" />
+      <location filename="../Project.py" line="2200" />
       <source>None</source>
       <translation>Ninguno</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="2151" />
+      <location filename="../Project.py" line="2206" />
       <source>&amp;Current Django project ({0})</source>
       <translation>Proyec&amp;to Django actual ({0})</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="3633" />
-      <location filename="../Project.py" line="3240" />
-      <location filename="../Project.py" line="3216" />
-      <location filename="../Project.py" line="3167" />
-      <location filename="../Project.py" line="3117" />
-      <location filename="../Project.py" line="2914" />
-      <location filename="../Project.py" line="2460" />
-      <location filename="../Project.py" line="2219" />
+      <location filename="../Project.py" line="3726" />
+      <location filename="../Project.py" line="3317" />
+      <location filename="../Project.py" line="3293" />
+      <location filename="../Project.py" line="3244" />
+      <location filename="../Project.py" line="3194" />
+      <location filename="../Project.py" line="2984" />
+      <location filename="../Project.py" line="2517" />
+      <location filename="../Project.py" line="2274" />
       <source>Process Generation Error</source>
       <translation>Error de Generación de Proceso</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="2220" />
+      <location filename="../Project.py" line="2275" />
       <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="2267" />
+      <location filename="../Project.py" line="2322" />
       <source>Could not start the web-browser for the url "{0}".</source>
       <translation>No se ha podido iniciar el navegador web para la url "{0}".</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="2341" />
+      <location filename="../Project.py" line="2396" />
       <source>Database Name</source>
       <translation>Nombre de Base de Datos</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="2342" />
+      <location filename="../Project.py" line="2397" />
       <source>Select a database name (leave empty for default):</source>
       <translation>Seleccionar un nombre de base de datos (dejar vacío para nombre por defecto):</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="2363" />
+      <location filename="../Project.py" line="2418" />
       <source>&lt;default&gt;</source>
       <translation>&lt;default&gt;</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="2365" />
+      <location filename="../Project.py" line="2420" />
       <source>&amp;Current Database ({0})</source>
       <translation>Base de Datos A&amp;ctual ({0})</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="2386" />
+      <location filename="../Project.py" line="2441" />
       <source>Introspect Database</source>
       <translation>Introspección de Base de datos</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="2420" />
+      <location filename="../Project.py" line="2475" />
       <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="2432" />
+      <location filename="../Project.py" line="2488" />
       <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="3241" />
-      <location filename="../Project.py" line="3217" />
-      <location filename="../Project.py" line="3118" />
-      <location filename="../Project.py" line="2915" />
-      <location filename="../Project.py" line="2461" />
+      <location filename="../Project.py" line="3318" />
+      <location filename="../Project.py" line="3294" />
+      <location filename="../Project.py" line="3195" />
+      <location filename="../Project.py" line="2985" />
+      <location filename="../Project.py" line="2518" />
       <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="2563" />
-      <location filename="../Project.py" line="2500" />
+      <location filename="../Project.py" line="2625" />
+      <location filename="../Project.py" line="2557" />
       <source>SQL Files (*.sql)</source>
       <translation>Archivos SQL (*.sql)</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="2544" />
-      <location filename="../Project.py" line="2540" />
+      <location filename="../Project.py" line="2603" />
+      <location filename="../Project.py" line="2599" />
       <source>SQL Migrate</source>
       <translation>SQL Migrate</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="2818" />
-      <location filename="../Project.py" line="2684" />
-      <location filename="../Project.py" line="2631" />
-      <location filename="../Project.py" line="2540" />
+      <location filename="../Project.py" line="2886" />
+      <location filename="../Project.py" line="2752" />
+      <location filename="../Project.py" line="2697" />
+      <location filename="../Project.py" line="2599" />
       <source>No migrations available.</source>
       <translation>No hay migraciones disponibles.</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="2652" />
+      <location filename="../Project.py" line="2720" />
       <source>Apply Migrations</source>
       <translation>Aplicar Migraciones</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="2691" />
+      <location filename="../Project.py" line="2759" />
       <source>Select an application:</source>
       <translation>Seleccionar una aplicación:</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="2948" />
+      <location filename="../Project.py" line="3018" />
       <source>Test Email sent successfully.</source>
       <translation>Email de prueba enviado con éxito.</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="2949" />
+      <location filename="../Project.py" line="3019" />
       <source>Test Email could not be sent.</source>
       <translation>No se ha podido enviar el email de prueba.</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="2978" />
+      <location filename="../Project.py" line="3050" />
       <source>Cache tables created successfully.</source>
       <translation>Tablas de caché creadas con éxito.</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="3018" />
+      <location filename="../Project.py" line="3091" />
       <source>JSON Files (*.json)</source>
       <translation>Archivos JSON (*.json)</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="3020" />
+      <location filename="../Project.py" line="3093" />
       <source>XML Files (*.xml)</source>
       <translation>Archivos XML (*.xml)</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="3022" />
+      <location filename="../Project.py" line="3095" />
       <source>YAML Files (*.yaml)</source>
       <translation>Archivos YAML (*.yaml)</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="3168" />
+      <location filename="../Project.py" line="3245" />
       <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="3199" />
+      <location filename="../Project.py" line="3276" />
       <source>Enter the name of the user:</source>
       <translation>Introducir el nombre del usuario:</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="3265" />
+      <location filename="../Project.py" line="3343" />
       <source>Expired sessions cleared successfully.</source>
       <translation>Sesiones expiradas limpiadas con éxito.</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="3341" />
+      <location filename="../Project.py" line="3420" />
       <source>Initializing message catalog for '{0}'</source>
       <translation>Inicializando catálogo de mensajes para '{0}'</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="3599" />
-      <location filename="../Project.py" line="3540" />
+      <location filename="../Project.py" line="3690" />
+      <location filename="../Project.py" line="3629" />
+      <location filename="../Project.py" line="3601" />
+      <location filename="../Project.py" line="3567" />
       <location filename="../Project.py" line="3514" />
-      <location filename="../Project.py" line="3482" />
-      <location filename="../Project.py" line="3431" />
-      <location filename="../Project.py" line="3386" />
-      <location filename="../Project.py" line="3355" />
+      <location filename="../Project.py" line="3467" />
+      <location filename="../Project.py" line="3434" />
       <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="3360" />
+      <location filename="../Project.py" line="3440" />
       <source>
 Message catalog initialized successfully.</source>
       <translation>
 Catálogo de mensajes iniciado con éxito.</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="3467" />
-      <location filename="../Project.py" line="3378" />
+      <location filename="../Project.py" line="3552" />
+      <location filename="../Project.py" line="3459" />
       <source>Updating message catalogs</source>
       <translation>Actualizando catálogos de mensajes</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="3560" />
-      <location filename="../Project.py" line="3449" />
-      <location filename="../Project.py" line="3405" />
+      <location filename="../Project.py" line="3649" />
+      <location filename="../Project.py" line="3532" />
+      <location filename="../Project.py" line="3486" />
       <source>No locales detected. Aborting...</source>
       <translation>No se ha detectado ningún idioma. Abortando...</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="3519" />
-      <location filename="../Project.py" line="3487" />
-      <location filename="../Project.py" line="3454" />
-      <location filename="../Project.py" line="3410" />
+      <location filename="../Project.py" line="3607" />
+      <location filename="../Project.py" line="3573" />
+      <location filename="../Project.py" line="3538" />
+      <location filename="../Project.py" line="3492" />
       <source>
 Message catalogs updated successfully.</source>
       <translation>
 Catálogos de mensajes actualizados con éxito.</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="3500" />
-      <location filename="../Project.py" line="3423" />
+      <location filename="../Project.py" line="3587" />
+      <location filename="../Project.py" line="3506" />
       <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="3584" />
-      <location filename="../Project.py" line="3532" />
+      <location filename="../Project.py" line="3675" />
+      <location filename="../Project.py" line="3621" />
       <source>Compiling message catalogs</source>
       <translation>Compilando catálogos de mensajes</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="3604" />
-      <location filename="../Project.py" line="3565" />
+      <location filename="../Project.py" line="3696" />
+      <location filename="../Project.py" line="3655" />
       <source>
 Message catalogs compiled successfully.</source>
       <translation>
 Catálogos de mensajes compilados con éxito.</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="3634" />
+      <location filename="../Project.py" line="3727" />
       <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>
@@ -2019,9 +2045,9 @@
   <context>
     <name>ProjectDjangoPlugin</name>
     <message>
-      <location filename="../../PluginProjectDjango.py" line="439" />
-      <location filename="../../PluginProjectDjango.py" line="203" />
-      <location filename="../../PluginProjectDjango.py" line="92" />
+      <location filename="../../PluginProjectDjango.py" line="442" />
+      <location filename="../../PluginProjectDjango.py" line="206" />
+      <location filename="../../PluginProjectDjango.py" line="95" />
       <source>Django</source>
       <translation>Django</translation>
     </message>
--- a/ProjectDjango/i18n/django_ru.ts	Thu Dec 26 14:24:34 2024 +0100
+++ b/ProjectDjango/i18n/django_ru.ts	Fri Dec 27 14:17:37 2024 +0100
@@ -865,1152 +865,1178 @@
   <context>
     <name>Project</name>
     <message>
-      <location filename="../Project.py" line="180" />
+      <location filename="../Project.py" line="181" />
       <source>Current Project</source>
       <translation>Текущий проект</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="182" />
+      <location filename="../Project.py" line="183" />
       <source>Selects the current project</source>
       <translation>Выбор текущего проекта</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="184" />
+      <location filename="../Project.py" line="185" />
       <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="199" />
+      <location filename="../Project.py" line="200" />
       <source>Start Project</source>
       <translation>Создание нового проекта</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="200" />
+      <location filename="../Project.py" line="201" />
       <source>Start &amp;Project</source>
       <translation>Новый &amp;проект</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="206" />
+      <location filename="../Project.py" line="207" />
       <source>Starts a new Django project</source>
       <translation>Создание нового Django-проекта</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="208" />
+      <location filename="../Project.py" line="209" />
       <source>&lt;b&gt;Start Project&lt;/b&gt;&lt;p&gt;Starts a new Django project using "django-admin.py startproject".&lt;/p&gt;</source>
       <translation>&lt;b&gt;Новый проект&lt;/b&gt;&lt;p&gt;Создание нового Django-проекта посредством команды "django-admin.py startproject".&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="218" />
+      <location filename="../Project.py" line="219" />
       <source>Start Application (global)</source>
       <translation>Создание приложения (global)</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="219" />
+      <location filename="../Project.py" line="220" />
       <source>Start Application (&amp;global)</source>
       <translation>Новое приложение (&amp;global)</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="226" />
+      <location filename="../Project.py" line="227" />
       <source>Starts a new global Django application</source>
       <translation>Создание нового (global) Django-приложения</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="229" />
+      <location filename="../Project.py" line="230" />
       <source>&lt;b&gt;Start Application (global)&lt;/b&gt;&lt;p&gt;Starts a new global Django application using "django-admin.py startapp".&lt;/p&gt;</source>
       <translation>&lt;b&gt;Старт приложения (global)&lt;/b&gt;&lt;p&gt;Создание нового global Django-приложения посредством команды: "django-admin.py startapp".&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="239" />
+      <location filename="../Project.py" line="240" />
       <source>Start Application (local)</source>
       <translation>Создание приложения (local)</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="240" />
+      <location filename="../Project.py" line="241" />
       <source>Start Application (&amp;local)</source>
       <translation>Новое приложение (&amp;local)</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="247" />
+      <location filename="../Project.py" line="248" />
       <source>Starts a new local Django application</source>
       <translation>Создание нового (local) Django-приложения</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="250" />
+      <location filename="../Project.py" line="251" />
       <source>&lt;b&gt;Start Application (local)&lt;/b&gt;&lt;p&gt;Starts a new local Django application using "manage.py startapp".&lt;/p&gt;</source>
       <translation>&lt;b&gt;Старт приложения (local)&lt;/b&gt;&lt;p&gt;Создание нового local Django-приложения посредством команды: "manage.py startapp".&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="264" />
+      <location filename="../Project.py" line="265" />
       <source>Run Server</source>
       <translation>Запуск сервера разработки</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="265" />
+      <location filename="../Project.py" line="266" />
       <source>Run &amp;Server</source>
       <translation>Запуск &amp;сервера разработки</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="271" />
+      <location filename="../Project.py" line="272" />
       <source>Starts the Django Web server</source>
       <translation>Запуск Django Web сервера разработки</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="273" />
+      <location filename="../Project.py" line="274" />
       <source>&lt;b&gt;Run Server&lt;/b&gt;&lt;p&gt;Starts the Django Web server using "manage.py runserver".&lt;/p&gt;</source>
       <translation>&lt;b&gt;Сервер разработки&lt;/b&gt;&lt;p&gt;Запуск Django Web сервера разработки посредством команды: "manage.py runserver".&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="2266" />
-      <location filename="../Project.py" line="283" />
+      <location filename="../Project.py" line="2321" />
+      <location filename="../Project.py" line="284" />
       <source>Run Web-Browser</source>
       <translation>Запуск Web-браузера администрирования</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="284" />
+      <location filename="../Project.py" line="285" />
       <source>Run &amp;Web-Browser</source>
       <translation>Запуск &amp;Web-браузера</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="291" />
+      <location filename="../Project.py" line="292" />
       <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="297" />
+      <location filename="../Project.py" line="298" />
       <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="2963" />
-      <location filename="../Project.py" line="311" />
+      <location filename="../Project.py" line="3034" />
+      <location filename="../Project.py" line="312" />
       <source>Create Cache Tables</source>
       <translation>Создание кэша таблиц</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="312" />
+      <location filename="../Project.py" line="313" />
       <source>C&amp;reate Cache Tables</source>
       <translation>С&amp;оздание кэша таблиц</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="319" />
+      <location filename="../Project.py" line="320" />
       <source>Creates the tables needed to use the SQL cache backend</source>
       <translation>Для создания таблиц необходимо использовать SQL кэш бэкенд</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="322" />
+      <location filename="../Project.py" line="323" />
       <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="336" />
+      <location filename="../Project.py" line="337" />
       <source>Help</source>
       <translation>Справка</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="336" />
+      <location filename="../Project.py" line="337" />
       <source>&amp;Help</source>
       <translation>&amp;Справка</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="338" />
+      <location filename="../Project.py" line="339" />
       <source>Shows the Django help index</source>
       <translation>Показ индекса справки Django</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="340" />
+      <location filename="../Project.py" line="341" />
       <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="1585" />
-      <location filename="../Project.py" line="350" />
+      <location filename="../Project.py" line="1635" />
+      <location filename="../Project.py" line="351" />
       <source>About Django</source>
       <translation>О Django</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="351" />
+      <location filename="../Project.py" line="352" />
       <source>About D&amp;jango</source>
       <translation>О D&amp;jango</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="357" />
+      <location filename="../Project.py" line="358" />
       <source>Shows some information about Django</source>
       <translation>Отображение информации о Django</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="359" />
+      <location filename="../Project.py" line="360" />
       <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="3680" />
+      <location filename="../Project.py" line="3774" />
+      <location filename="../Project.py" line="374" />
       <location filename="../Project.py" line="373" />
-      <location filename="../Project.py" line="372" />
       <source>Check Project</source>
       <translation>Проверить проект</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="380" />
+      <location filename="../Project.py" line="381" />
       <source>Inspects the Django project for common problems</source>
       <translation>Инспекция общераспространенных проблем Django-проекта</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="383" />
+      <location filename="../Project.py" line="384" />
       <source>&lt;b&gt;Check Project&lt;/b&gt;&lt;p&gt;This inspects the Django project for common problems.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Проверить проект&lt;/b&gt;&lt;p&gt;Инспекция общих проблем Django-проекта.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="404" />
+      <location filename="../Project.py" line="405" />
       <source>Current Database</source>
       <translation>Текущая база данных</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="406" />
+      <location filename="../Project.py" line="407" />
       <source>Selects the current database</source>
       <translation>Выбор текущей базы данных</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="408" />
+      <location filename="../Project.py" line="409" />
       <source>&lt;b&gt;Current Database&lt;/b&gt;&lt;p&gt;Selects the database name to be used by all database actions. An empty database name indicates to use the default name.&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="420" />
+      <location filename="../Project.py" line="421" />
       <source>Introspect</source>
       <translation>Просматривает базу данных, определяет структуру моделей и выводит их код</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="421" />
+      <location filename="../Project.py" line="422" />
       <source>&amp;Introspect</source>
       <translation>&amp;Инспекция</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="428" />
+      <location filename="../Project.py" line="429" />
       <source>Introspects the database tables and outputs a Django model module</source>
       <translation>Анализ таблиц базы данных и вывод кода модуля Django моделей</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="431" />
+      <location filename="../Project.py" line="432" />
       <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="441" />
+      <location filename="../Project.py" line="442" />
       <source>Flush</source>
       <translation>Очистка</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="441" />
+      <location filename="../Project.py" line="442" />
       <source>&amp;Flush</source>
       <translation>&amp;Очистка</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="444" />
+      <location filename="../Project.py" line="445" />
       <source>Returns all database tables to the state just after their installation</source>
       <translation>Возвращает все таблицы базы данных к состоянию на момент инсталяции базы</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="450" />
+      <location filename="../Project.py" line="451" />
       <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="460" />
+      <location filename="../Project.py" line="461" />
       <source>Start Client Console</source>
       <translation>Запуск консоли клиента</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="461" />
+      <location filename="../Project.py" line="462" />
       <source>Start &amp;Client Console</source>
       <translation>Старт консоли &amp;клиента</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="468" />
+      <location filename="../Project.py" line="469" />
       <source>Starts a console window for the database client</source>
       <translation>Запуск окна консоли для клиента базы данных</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="471" />
+      <location filename="../Project.py" line="472" />
       <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="2512" />
-      <location filename="../Project.py" line="2415" />
-      <location filename="../Project.py" line="484" />
+      <location filename="../Project.py" line="2571" />
+      <location filename="../Project.py" line="2470" />
+      <location filename="../Project.py" line="485" />
       <source>Flush Database</source>
       <translation>Очистка базы данных</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="485" />
+      <location filename="../Project.py" line="486" />
       <source>&amp;Flush Database</source>
       <translation>&amp;Очистка базы данных</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="492" />
+      <location filename="../Project.py" line="493" />
       <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="498" />
+      <location filename="../Project.py" line="499" />
       <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="2519" />
-      <location filename="../Project.py" line="508" />
+      <location filename="../Project.py" line="2578" />
+      <location filename="../Project.py" line="509" />
       <source>Reset Sequences</source>
       <translation>Сброс цепочки</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="509" />
+      <location filename="../Project.py" line="510" />
       <source>Reset &amp;Sequences</source>
       <translation>Сброс &amp;цепочки</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="516" />
+      <location filename="../Project.py" line="517" />
       <source>Prints the SQL statements for resetting sequences for one or more applications</source>
       <translation>Выводит SQL команд для сброса последовательности для одного или нескольких приложений</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="522" />
+      <location filename="../Project.py" line="523" />
       <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="532" />
+      <location filename="../Project.py" line="533" />
       <source>Apply Migration</source>
       <translation>Применить миграцию</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="533" />
+      <location filename="../Project.py" line="534" />
       <source>&amp;Apply Migration</source>
       <translation>&amp;Применить миграцию</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="540" />
+      <location filename="../Project.py" line="541" />
       <source>Prints the SQL statements to apply a migration of an application</source>
       <translation>Выводит SQL запросы для выполнения миграции приложения</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="543" />
+      <location filename="../Project.py" line="544" />
       <source>&lt;b&gt;Apply Migration&lt;/b&gt;&lt;p&gt;Prints the SQL statements to apply a migration of an application.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Применить миграцию&lt;/b&gt;&lt;p&gt;Выводит SQL запросы для выполнения миграции приложения.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="553" />
+      <location filename="../Project.py" line="554" />
       <source>Unapply Migration</source>
       <translation>Откатить миграцию</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="554" />
+      <location filename="../Project.py" line="555" />
       <source>&amp;Unapply Migration</source>
       <translation>&amp;Откатить миграцию</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="561" />
+      <location filename="../Project.py" line="562" />
       <source>Prints the SQL statements to unapply a migration of an application</source>
       <translation>Выводит SQL команды для отката миграции приложения</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="566" />
+      <location filename="../Project.py" line="567" />
       <source>&lt;b&gt;Unapply Migration&lt;/b&gt;&lt;p&gt;Prints the SQL statements to unapply a migration of an application.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Откатить миграцию&lt;/b&gt;&lt;p&gt;Выводит SQL команды для отката миграции приложения.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="2862" />
-      <location filename="../Project.py" line="582" />
+      <location filename="../Project.py" line="2932" />
+      <location filename="../Project.py" line="583" />
       <source>Diff Settings</source>
       <translation>Отличие текущих параметров от параметров настройки Django по умолчанию</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="583" />
+      <location filename="../Project.py" line="584" />
       <source>&amp;Diff Settings</source>
       <translation>&amp;Различия настройки</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="590" />
+      <location filename="../Project.py" line="591" />
       <source>Shows the modification made to the settings</source>
       <translation>Показ изменений, сделанных в параметрах настройки</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="593" />
+      <location filename="../Project.py" line="594" />
       <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="602" />
+      <location filename="../Project.py" line="603" />
       <source>Start Python Console</source>
       <translation>Старт консоли Python</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="603" />
+      <location filename="../Project.py" line="604" />
       <source>Start &amp;Python Console</source>
       <translation>Старт консоли &amp;Python</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="610" />
+      <location filename="../Project.py" line="611" />
       <source>Starts a Python interactive interpreter</source>
       <translation>Запуск интерактивного интерпретатора Python</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="613" />
+      <location filename="../Project.py" line="614" />
       <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="2924" />
-      <location filename="../Project.py" line="622" />
+      <location filename="../Project.py" line="2994" />
+      <location filename="../Project.py" line="623" />
       <source>Send Test Email</source>
       <translation>Отправить тестовое письмо</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="623" />
+      <location filename="../Project.py" line="624" />
       <source>Send Test &amp;Email</source>
       <translation>Отправить тестовое &amp;письмо</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="629" />
+      <location filename="../Project.py" line="630" />
       <source>Send a test email through Django</source>
       <translation>Отправить тестовое письмо посредством Django</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="631" />
+      <location filename="../Project.py" line="632" />
       <source>&lt;b&gt;Send Test Email&lt;/b&gt;&lt;p&gt;Sends a test email to confirm email sending through Django is working.&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="2994" />
-      <location filename="../Project.py" line="645" />
+      <location filename="../Project.py" line="3067" />
+      <location filename="../Project.py" line="646" />
       <source>Dump Data</source>
       <translation>Выводит текущие данные из базы данных</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="646" />
+      <location filename="../Project.py" line="647" />
       <source>&amp;Dump Data</source>
       <translation>&amp;Выгрузка данных</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="652" />
+      <location filename="../Project.py" line="653" />
       <source>Dump the database data to a fixture</source>
       <translation>Выводит данные базы данных в файлы фикстур</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="654" />
+      <location filename="../Project.py" line="655" />
       <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="3037" />
-      <location filename="../Project.py" line="660" />
+      <location filename="../Project.py" line="3114" />
+      <location filename="../Project.py" line="661" />
       <source>Load Data</source>
       <translation>Загрузка данных в базу данных из файлов оснастки</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="661" />
+      <location filename="../Project.py" line="662" />
       <source>&amp;Load Data</source>
       <translation>&amp;Загрузка данных</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="667" />
+      <location filename="../Project.py" line="668" />
       <source>Load data from fixture files</source>
       <translation>Загрузка начальных данных из файлов фикстур</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="669" />
+      <location filename="../Project.py" line="670" />
       <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="675" />
+      <location filename="../Project.py" line="676" />
       <source>Run Testsuite</source>
       <translation>Выполнить набор тестов</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="676" />
+      <location filename="../Project.py" line="677" />
       <source>Run &amp;Testsuite</source>
       <translation>Выполнить набор &amp;тестов</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="683" />
+      <location filename="../Project.py" line="684" />
       <source>Run the test suite for applications or the whole site</source>
       <translation>Выполнение набора тестов для приложения или для всего сайта</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="686" />
+      <location filename="../Project.py" line="687" />
       <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="697" />
       <location filename="../Project.py" line="696" />
-      <location filename="../Project.py" line="695" />
       <source>Run Testsuite (-Wall)</source>
       <translation>Выполнить набор тестов (-Wall)</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="703" />
+      <location filename="../Project.py" line="704" />
       <source>Run the test suite for applications or the whole site with activated deprecation warnings</source>
       <translation>Выполнить набор тестов для приложений или всего сайта с включенными предупреждениями о устаревшем API</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="709" />
+      <location filename="../Project.py" line="710" />
       <source>&lt;b&gt;Run Testsuite (-Wall)&lt;/b&gt;&lt;p&gt;Run the test suite for applications or the whole site with activated deprecation warnings.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Выполнить набор тестов (-Wall)&lt;/b&gt;&lt;p&gt;Выполнение набора тестов для приложений или всего сайта с включенными предупреждениями о устаревшем API.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="721" />
+      <location filename="../Project.py" line="722" />
       <source>Run Testserver</source>
       <translation>Запуск сервера тестов</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="722" />
+      <location filename="../Project.py" line="723" />
       <source>Run Test&amp;server</source>
       <translation>Запуск сервера &amp;тестов</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="729" />
+      <location filename="../Project.py" line="730" />
       <source>Run a development server with data from a set of fixtures</source>
       <translation>Запуск сервера разработки с данными из набора фикстур</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="732" />
+      <location filename="../Project.py" line="733" />
       <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="3198" />
-      <location filename="../Project.py" line="746" />
+      <location filename="../Project.py" line="3275" />
+      <location filename="../Project.py" line="747" />
       <source>Change Password</source>
       <translation>Смена пароля</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="747" />
+      <location filename="../Project.py" line="748" />
       <source>Change &amp;Password</source>
       <translation>Смена &amp;пароля</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="753" />
+      <location filename="../Project.py" line="754" />
       <source>Change the password of a user</source>
       <translation>Смена пароля пользователя</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="755" />
+      <location filename="../Project.py" line="756" />
       <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="764" />
+      <location filename="../Project.py" line="765" />
       <source>Create Superuser</source>
       <translation>Создание суперпользователя</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="765" />
+      <location filename="../Project.py" line="766" />
       <source>Create &amp;Superuser</source>
       <translation>Создать &amp;суперпользователя</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="771" />
+      <location filename="../Project.py" line="772" />
       <source>Create a superuser account</source>
       <translation>Создать аккаунт суперпользователя</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="773" />
+      <location filename="../Project.py" line="774" />
       <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="3252" />
-      <location filename="../Project.py" line="786" />
+      <location filename="../Project.py" line="3329" />
+      <location filename="../Project.py" line="787" />
       <source>Clear Sessions</source>
       <translation>Очистка сессии</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="787" />
+      <location filename="../Project.py" line="788" />
       <source>Clear &amp;Sessions</source>
       <translation>Очистка &amp;сессии</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="793" />
+      <location filename="../Project.py" line="794" />
       <source>Clear expired sessions</source>
       <translation>Очистка истекших сессий</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="795" />
+      <location filename="../Project.py" line="796" />
       <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="808" />
+      <location filename="../Project.py" line="809" />
       <source>Show Migrations</source>
       <translation>Показать миграции</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="809" />
+      <location filename="../Project.py" line="810" />
       <source>&amp;Show Migrations</source>
       <translation>&amp;Показать миграции</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="816" />
+      <location filename="../Project.py" line="817" />
       <source>Show a list of available migrations</source>
       <translation>Отображение списка доступных миграций</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="819" />
+      <location filename="../Project.py" line="820" />
       <source>&lt;b&gt;Show Migrations&lt;/b&gt;&lt;p&gt;This shows a list of available migrations of the Django project and their status.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Показать миграции&lt;/b&gt;&lt;p&gt;Отображение списка доступных миграций Django-проекта и их статуса.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="829" />
+      <location filename="../Project.py" line="830" />
       <source>Show Migrations Plan</source>
       <translation>Показать план миграций</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="830" />
+      <location filename="../Project.py" line="831" />
       <source>Show Migrations &amp;Plan</source>
       <translation>Показать &amp;план миграций</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="837" />
+      <location filename="../Project.py" line="838" />
       <source>Show a list with the migrations plan</source>
       <translation>Отображение плана выполнения миграций</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="840" />
+      <location filename="../Project.py" line="841" />
       <source>&lt;b&gt;Show Migrations Plan&lt;/b&gt;&lt;p&gt;This shows a list with the migrations plan of the Django project.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Показать план миграций&lt;/b&gt;&lt;p&gt;Отображение плана выполнения миграций Django-проекта.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="850" />
+      <location filename="../Project.py" line="851" />
       <source>Apply All Migrations</source>
       <translation>Применить все миграции</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="851" />
+      <location filename="../Project.py" line="852" />
       <source>&amp;Apply All Migrations</source>
       <translation>&amp;Применить все миграции</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="857" />
+      <location filename="../Project.py" line="858" />
       <source>Apply all available migrations</source>
       <translation>Применить все доступные миграции</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="859" />
+      <location filename="../Project.py" line="860" />
       <source>&lt;b&gt;Apply All Migrations&lt;/b&gt;&lt;p&gt;This applies all migrations of the Django project.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Применить все миграции&lt;/b&gt;&lt;p&gt;Касается всех миграций Django-проекта.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="2630" />
+      <location filename="../Project.py" line="2696" />
+      <location filename="../Project.py" line="870" />
       <location filename="../Project.py" line="869" />
-      <location filename="../Project.py" line="868" />
       <source>Apply Selected Migrations</source>
       <translation>Применить выбранные миграции</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="875" />
+      <location filename="../Project.py" line="876" />
       <source>Apply selected migrations</source>
       <translation>Применить выбранные миграции</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="877" />
+      <location filename="../Project.py" line="878" />
       <source>&lt;b&gt;Apply Selected Migrations&lt;/b&gt;&lt;p&gt;This applies selected migrations of the Django project.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Применить выбранные миграции&lt;/b&gt;&lt;p&gt;Касается выбранных миграций Django-проекта.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="2690" />
-      <location filename="../Project.py" line="2683" />
-      <location filename="../Project.py" line="2650" />
-      <location filename="../Project.py" line="887" />
+      <location filename="../Project.py" line="2758" />
+      <location filename="../Project.py" line="2751" />
+      <location filename="../Project.py" line="2718" />
+      <location filename="../Project.py" line="888" />
       <source>Unapply Migrations</source>
       <translation>Откатить миграции</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="888" />
+      <location filename="../Project.py" line="889" />
       <source>&amp;Unapply Migrations</source>
       <translation>&amp;Откатить миграции</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="894" />
+      <location filename="../Project.py" line="895" />
       <source>Unapply all migrations for an app</source>
       <translation>Откат всех миграций для приложения</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="896" />
+      <location filename="../Project.py" line="897" />
       <source>&lt;b&gt;Unapply Migrations&lt;/b&gt;&lt;p&gt;This unapplies all migrations for an app of the Django project.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Откатить миграции&lt;/b&gt;&lt;p&gt;Откат всех миграций для приложений Django-проекта.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="2777" />
-      <location filename="../Project.py" line="906" />
+      <location filename="../Project.py" line="2845" />
+      <location filename="../Project.py" line="907" />
       <source>Make Migrations</source>
       <translation>Создать миграции</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="907" />
+      <location filename="../Project.py" line="908" />
       <source>&amp;Make Migrations</source>
       <translation>&amp;Создать миграции</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="914" />
+      <location filename="../Project.py" line="915" />
       <source>Generate migrations for the project</source>
       <translation>Создание миграций для проекта на основе изменений</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="917" />
+      <location filename="../Project.py" line="918" />
       <source>&lt;b&gt;Make Migrations&lt;/b&gt;&lt;p&gt;This generates migrations for the Django project.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Создать миграции&lt;/b&gt;&lt;p&gt;Создание миграций для Django-проекта.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="2826" />
-      <location filename="../Project.py" line="2817" />
-      <location filename="../Project.py" line="926" />
+      <location filename="../Project.py" line="2896" />
+      <location filename="../Project.py" line="2885" />
+      <location filename="../Project.py" line="927" />
       <source>Squash Migrations</source>
       <translation>Объединить миграции</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="927" />
+      <location filename="../Project.py" line="928" />
       <source>S&amp;quash Migrations</source>
       <translation>О&amp;бъединить миграции</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="934" />
+      <location filename="../Project.py" line="935" />
       <source>Squash migrations of an application of the project</source>
       <translation>Объединение миграций приложения Django-проекта</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="937" />
+      <location filename="../Project.py" line="938" />
       <source>&lt;b&gt;Squash Migrations&lt;/b&gt;&lt;p&gt;This squashes migrations of an application of the Django project.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Объединить миграции&lt;/b&gt;&lt;p&gt;Объединение миграций приложения Django-проекта.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="955" />
+      <location filename="../Project.py" line="956" />
       <source>D&amp;jango</source>
       <translation>D&amp;jango</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="997" />
+      <location filename="../Project.py" line="998" />
       <source>&amp;Database</source>
       <translation>&amp;База данных</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="1021" />
+      <location filename="../Project.py" line="1022" />
       <source>Show &amp;SQL</source>
       <translation>&amp;SQL</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="1041" />
+      <location filename="../Project.py" line="1042" />
       <source>&amp;Migrations</source>
       <translation>&amp;Миграции</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="1066" />
+      <location filename="../Project.py" line="1067" />
       <source>&amp;Tools</source>
       <translation>&amp;Сервис</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="1086" />
+      <location filename="../Project.py" line="1087" />
       <source>T&amp;esting</source>
       <translation>Т&amp;естирование</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="1107" />
+      <location filename="../Project.py" line="1108" />
       <source>&amp;Authorization</source>
       <translation>&amp;Авторизация</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="1124" />
+      <location filename="../Project.py" line="1125" />
       <source>&amp;Session</source>
       <translation>&amp;Сессия</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="1172" />
+      <location filename="../Project.py" line="1173" />
       <source>Open with {0}</source>
       <translation>Открыть с помощью {0}</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="1186" />
+      <location filename="../Project.py" line="1187" />
       <source>New template...</source>
       <translation>Новый шаблон...</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="1196" />
+      <location filename="../Project.py" line="1197" />
       <source>Update all catalogs</source>
       <translation>Обновить все каталоги</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="1201" />
+      <location filename="../Project.py" line="1202" />
       <source>Update selected catalogs</source>
       <translation>Обновить выбранные каталоги</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="1206" />
+      <location filename="../Project.py" line="1207" />
       <source>Update all catalogs (with obsolete)</source>
       <translation>Обновить все каталоги (с устаревшими)</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="1211" />
+      <location filename="../Project.py" line="1212" />
       <source>Update selected catalogs (with obsolete)</source>
       <translation>Обновить выбранные каталоги (с устаревшими)</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="1214" />
+      <location filename="../Project.py" line="1215" />
       <source>Compile all catalogs</source>
       <translation>Компиляция всех каталогов</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="1219" />
+      <location filename="../Project.py" line="1220" />
       <source>Compile selected catalogs</source>
       <translation>Компиляция выбранных каталогов</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="1255" />
+      <location filename="../Project.py" line="1256" />
       <source>HTML Files (*.html);;HTML Files (*.htm);;All Files (*)</source>
       <translation>Файлы HTML (*.html);;Файлы HTML (*.htm);;Все файлы (*)</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="1311" />
-      <location filename="../Project.py" line="1280" />
-      <location filename="../Project.py" line="1260" />
+      <location filename="../Project.py" line="1361" />
+      <location filename="../Project.py" line="1296" />
+      <location filename="../Project.py" line="1279" />
+      <location filename="../Project.py" line="1259" />
       <source>New Form</source>
       <translation>Создание новой формы</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="1281" />
+      <location filename="../Project.py" line="1280" />
       <source>The file already exists! Overwrite it?</source>
       <translation>Файл уже существует! Переписать его?</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="1312" />
+      <location filename="../Project.py" line="1289" />
+      <source>Base Template</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project.py" line="1290" />
+      <source>Extending Template</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project.py" line="1291" />
+      <source>Standalone Template</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project.py" line="1292" />
+      <source>Empty Template</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project.py" line="1297" />
+      <source>Select a template type:</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project.py" line="1362" />
       <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="1586" />
+      <location filename="../Project.py" line="1636" />
       <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="{1}"&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="{1}"&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="1663" />
+      <location filename="../Project.py" line="1714" />
       <source>Select Applications</source>
       <translation>Выбор приложений</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="1664" />
+      <location filename="../Project.py" line="1715" />
       <source>Enter the list of applications separated by spaces.</source>
       <translation>Введите список приложений, разделенных пробелами.</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="2147" />
-      <location filename="../Project.py" line="1850" />
+      <location filename="../Project.py" line="2202" />
+      <location filename="../Project.py" line="1901" />
       <source>Project</source>
       <translation>Project</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="1851" />
+      <location filename="../Project.py" line="1902" />
       <source>Application</source>
       <translation>Application</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="1855" />
+      <location filename="../Project.py" line="1906" />
       <source>Start Django</source>
       <translation>Старт Django</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="1856" />
+      <location filename="../Project.py" line="1907" />
       <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="1958" />
-      <location filename="../Project.py" line="1886" />
+      <location filename="../Project.py" line="2011" />
+      <location filename="../Project.py" line="1937" />
       <source>Start Django Project</source>
       <translation>Создание Django-проекта</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="1894" />
+      <location filename="../Project.py" line="1945" />
       <source>&lt;p&gt;The Django project path &lt;b&gt;{0}&lt;/b&gt; exists already. Shall it be removed and recreated?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Путь к Django-проекту &lt;b&gt;{0}&lt;/b&gt; уже существует. Удалить его и создать заново?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="1904" />
+      <location filename="../Project.py" line="1955" />
       <source>&lt;p&gt;Please add the files to the eric project manually.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Пожалуйста вручную добавьте файлы в eric-проект.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="2005" />
-      <location filename="../Project.py" line="1923" />
+      <location filename="../Project.py" line="2058" />
+      <location filename="../Project.py" line="1974" />
       <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="1934" />
+      <location filename="../Project.py" line="1986" />
       <source>Django project created successfully.</source>
       <translation>Django-проект успешно создан.</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="1959" />
+      <location filename="../Project.py" line="2012" />
       <source>Enter the name of the new Django project.</source>
       <translation>Введите имя нового Django-проекта.</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="1987" />
+      <location filename="../Project.py" line="2040" />
       <source>Start Django Application</source>
       <translation>Создание Django-приложения</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="2023" />
+      <location filename="../Project.py" line="2077" />
       <source>Django application created successfully.</source>
       <translation>Django-приложение успешно создано.</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="2036" />
+      <location filename="../Project.py" line="2091" />
       <source>Start Global Django Application</source>
       <translation>Выполнение global Django-приложения</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="2037" />
+      <location filename="../Project.py" line="2092" />
       <source>Enter the name of the new global Django application.</source>
       <translation>Введите имя нового global Djangо-приложения.</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="2058" />
+      <location filename="../Project.py" line="2113" />
       <source>Start Local Django Application</source>
       <translation>Выполнение local Django-приложения</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="2059" />
+      <location filename="../Project.py" line="2114" />
       <source>Enter the name of the new local Django application.</source>
       <translation>Введите имя нового local Django-приложения.</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="2109" />
+      <location filename="../Project.py" line="2164" />
       <source>Select Project</source>
       <translation>Выбор проекта</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="2110" />
+      <location filename="../Project.py" line="2165" />
       <source>Select the Django project to work with.</source>
       <translation>Выбор Django-проекта для работы.</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="2145" />
+      <location filename="../Project.py" line="2200" />
       <source>None</source>
       <translation>none</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="2151" />
+      <location filename="../Project.py" line="2206" />
       <source>&amp;Current Django project ({0})</source>
       <translation>Текущий &amp;Django-проект ({0})</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="3633" />
-      <location filename="../Project.py" line="3240" />
-      <location filename="../Project.py" line="3216" />
-      <location filename="../Project.py" line="3167" />
-      <location filename="../Project.py" line="3117" />
-      <location filename="../Project.py" line="2914" />
-      <location filename="../Project.py" line="2460" />
-      <location filename="../Project.py" line="2219" />
+      <location filename="../Project.py" line="3726" />
+      <location filename="../Project.py" line="3317" />
+      <location filename="../Project.py" line="3293" />
+      <location filename="../Project.py" line="3244" />
+      <location filename="../Project.py" line="3194" />
+      <location filename="../Project.py" line="2984" />
+      <location filename="../Project.py" line="2517" />
+      <location filename="../Project.py" line="2274" />
       <source>Process Generation Error</source>
       <translation>Ошибка при запуске процесса</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="2220" />
+      <location filename="../Project.py" line="2275" />
       <source>The Django server could not be started.</source>
       <translation>Невозможно запустить Django сервер.</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="2267" />
+      <location filename="../Project.py" line="2322" />
       <source>Could not start the web-browser for the url "{0}".</source>
       <translation>Невозможно открыть web-браузер с адресом "{0}".</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="2341" />
+      <location filename="../Project.py" line="2396" />
       <source>Database Name</source>
       <translation>Имя базы данных</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="2342" />
+      <location filename="../Project.py" line="2397" />
       <source>Select a database name (leave empty for default):</source>
       <translation>Выберите имя базы данных (по умолчанию оставьте пустым):</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="2363" />
+      <location filename="../Project.py" line="2418" />
       <source>&lt;default&gt;</source>
       <translation>&lt;default&gt;</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="2365" />
+      <location filename="../Project.py" line="2420" />
       <source>&amp;Current Database ({0})</source>
       <translation>&amp;Текущая база данных ({0})</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="2386" />
+      <location filename="../Project.py" line="2441" />
       <source>Introspect Database</source>
       <translation>Анализ таблиц базы данных и генерация кода модуля Django моделей</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="2420" />
+      <location filename="../Project.py" line="2475" />
       <source>Flushing the database will destroy all data. Are you sure?</source>
       <translation>Очистка базы данных приведет к уничтожению всех данных. Вы действительно этого хотите?</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="2432" />
+      <location filename="../Project.py" line="2488" />
       <source>Database tables flushed successfully.</source>
       <translation>Таблицы базы данных успешно очищены.</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="3241" />
-      <location filename="../Project.py" line="3217" />
-      <location filename="../Project.py" line="3118" />
-      <location filename="../Project.py" line="2915" />
-      <location filename="../Project.py" line="2461" />
+      <location filename="../Project.py" line="3318" />
+      <location filename="../Project.py" line="3294" />
+      <location filename="../Project.py" line="3195" />
+      <location filename="../Project.py" line="2985" />
+      <location filename="../Project.py" line="2518" />
       <source>The Django process could not be started.</source>
       <translation>Невозможно запустить Django процесс.</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="2563" />
-      <location filename="../Project.py" line="2500" />
+      <location filename="../Project.py" line="2625" />
+      <location filename="../Project.py" line="2557" />
       <source>SQL Files (*.sql)</source>
       <translation>SQL файлы (*.sql)</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="2544" />
-      <location filename="../Project.py" line="2540" />
+      <location filename="../Project.py" line="2603" />
+      <location filename="../Project.py" line="2599" />
       <source>SQL Migrate</source>
       <translation>SQL миграции</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="2818" />
-      <location filename="../Project.py" line="2684" />
-      <location filename="../Project.py" line="2631" />
-      <location filename="../Project.py" line="2540" />
+      <location filename="../Project.py" line="2886" />
+      <location filename="../Project.py" line="2752" />
+      <location filename="../Project.py" line="2697" />
+      <location filename="../Project.py" line="2599" />
       <source>No migrations available.</source>
       <translation>Нет доступных миграций.</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="2652" />
+      <location filename="../Project.py" line="2720" />
       <source>Apply Migrations</source>
       <translation>Применить миграции</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="2691" />
+      <location filename="../Project.py" line="2759" />
       <source>Select an application:</source>
       <translation>Выберите приложение:</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="2948" />
+      <location filename="../Project.py" line="3018" />
       <source>Test Email sent successfully.</source>
       <translation>Тестовое письмо успешно отправлено.</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="2949" />
+      <location filename="../Project.py" line="3019" />
       <source>Test Email could not be sent.</source>
       <translation>Невозможно отправить тестовое письмо.</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="2978" />
+      <location filename="../Project.py" line="3050" />
       <source>Cache tables created successfully.</source>
       <translation>Кэш таблиц создан успешно.</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="3018" />
+      <location filename="../Project.py" line="3091" />
       <source>JSON Files (*.json)</source>
       <translation>JSON файлы (*.json)</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="3020" />
+      <location filename="../Project.py" line="3093" />
       <source>XML Files (*.xml)</source>
       <translation>XML файлы (*.xml)</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="3022" />
+      <location filename="../Project.py" line="3095" />
       <source>YAML Files (*.yaml)</source>
       <translation>YAML файлы (*.yaml)</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="3168" />
+      <location filename="../Project.py" line="3245" />
       <source>The Django test server could not be started.</source>
       <translation>Невозможно запустить Django сервер тестов.</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="3199" />
+      <location filename="../Project.py" line="3276" />
       <source>Enter the name of the user:</source>
       <translation>Введите имя пользователя:</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="3265" />
+      <location filename="../Project.py" line="3343" />
       <source>Expired sessions cleared successfully.</source>
       <translation>Истекшая сессия успешно очищена.</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="3341" />
+      <location filename="../Project.py" line="3420" />
       <source>Initializing message catalog for '{0}'</source>
       <translation>Инициализация каталога сообщений для '{0}'</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="3599" />
-      <location filename="../Project.py" line="3540" />
+      <location filename="../Project.py" line="3690" />
+      <location filename="../Project.py" line="3629" />
+      <location filename="../Project.py" line="3601" />
+      <location filename="../Project.py" line="3567" />
       <location filename="../Project.py" line="3514" />
-      <location filename="../Project.py" line="3482" />
-      <location filename="../Project.py" line="3431" />
-      <location filename="../Project.py" line="3386" />
-      <location filename="../Project.py" line="3355" />
+      <location filename="../Project.py" line="3467" />
+      <location filename="../Project.py" line="3434" />
       <source>No current site selected or no site created yet. Aborting...</source>
       <translation>Текущий сайт не выбран или еще не создан. Прерывание выполнения...</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="3360" />
+      <location filename="../Project.py" line="3440" />
       <source>
 Message catalog initialized successfully.</source>
       <translation>
 Каталог сообщений успешно инициализирован.</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="3467" />
-      <location filename="../Project.py" line="3378" />
+      <location filename="../Project.py" line="3552" />
+      <location filename="../Project.py" line="3459" />
       <source>Updating message catalogs</source>
       <translation>Обновление каталогов сообщений</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="3560" />
-      <location filename="../Project.py" line="3449" />
-      <location filename="../Project.py" line="3405" />
+      <location filename="../Project.py" line="3649" />
+      <location filename="../Project.py" line="3532" />
+      <location filename="../Project.py" line="3486" />
       <source>No locales detected. Aborting...</source>
       <translation>Локали не найдены. Прерывание выполнения...</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="3519" />
-      <location filename="../Project.py" line="3487" />
-      <location filename="../Project.py" line="3454" />
-      <location filename="../Project.py" line="3410" />
+      <location filename="../Project.py" line="3607" />
+      <location filename="../Project.py" line="3573" />
+      <location filename="../Project.py" line="3538" />
+      <location filename="../Project.py" line="3492" />
       <source>
 Message catalogs updated successfully.</source>
       <translation>
 Каталоги сообщений успешно обновлены.</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="3500" />
-      <location filename="../Project.py" line="3423" />
+      <location filename="../Project.py" line="3587" />
+      <location filename="../Project.py" line="3506" />
       <source>Updating message catalogs (keeping obsolete messages)</source>
       <translation>Обновление каталогов сообщений (с сохранением устаревших сообщений)</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="3584" />
-      <location filename="../Project.py" line="3532" />
+      <location filename="../Project.py" line="3675" />
+      <location filename="../Project.py" line="3621" />
       <source>Compiling message catalogs</source>
       <translation>Компиляция каталогов сообщений</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="3604" />
-      <location filename="../Project.py" line="3565" />
+      <location filename="../Project.py" line="3696" />
+      <location filename="../Project.py" line="3655" />
       <source>
 Message catalogs compiled successfully.</source>
       <translation>
 Каталоги сообщений успешно компилированы.</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="3634" />
+      <location filename="../Project.py" line="3727" />
       <source>The translations editor process ({0}) could not be started.</source>
       <translation>Невозможен запуск редактора переводов ({0}).</translation>
     </message>
@@ -2018,9 +2044,9 @@
   <context>
     <name>ProjectDjangoPlugin</name>
     <message>
-      <location filename="../../PluginProjectDjango.py" line="439" />
-      <location filename="../../PluginProjectDjango.py" line="203" />
-      <location filename="../../PluginProjectDjango.py" line="92" />
+      <location filename="../../PluginProjectDjango.py" line="442" />
+      <location filename="../../PluginProjectDjango.py" line="206" />
+      <location filename="../../PluginProjectDjango.py" line="95" />
       <source>Django</source>
       <translation>Django</translation>
     </message>
--- a/ProjectDjango/i18n/django_tr.ts	Thu Dec 26 14:24:34 2024 +0100
+++ b/ProjectDjango/i18n/django_tr.ts	Fri Dec 27 14:17:37 2024 +0100
@@ -873,1149 +873,1175 @@
   <context>
     <name>Project</name>
     <message>
-      <location filename="../Project.py" line="180" />
+      <location filename="../Project.py" line="181" />
       <source>Current Project</source>
       <translation>Geçerli Proje</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="182" />
+      <location filename="../Project.py" line="183" />
       <source>Selects the current project</source>
       <translation>geçerli projeyi seç</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="184" />
+      <location filename="../Project.py" line="185" />
       <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" />
     </message>
     <message>
-      <location filename="../Project.py" line="199" />
+      <location filename="../Project.py" line="200" />
       <source>Start Project</source>
       <translation>Projeyi Başlat</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="200" />
+      <location filename="../Project.py" line="201" />
       <source>Start &amp;Project</source>
       <translation>&amp;Projeyi Başlat</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="206" />
+      <location filename="../Project.py" line="207" />
       <source>Starts a new Django project</source>
       <translation>Yeni bir django projesi başlat</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="208" />
+      <location filename="../Project.py" line="209" />
       <source>&lt;b&gt;Start Project&lt;/b&gt;&lt;p&gt;Starts a new Django project using "django-admin.py startproject".&lt;/p&gt;</source>
       <translation>&lt;b&gt;Projeyi Başlat&lt;/b&gt;&lt;p&gt;Yeni bir django projesini  "django-admin.py startproject" kullanarak başlat.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="218" />
+      <location filename="../Project.py" line="219" />
       <source>Start Application (global)</source>
       <translation>Uygulayı başlat (küresel)</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="219" />
+      <location filename="../Project.py" line="220" />
       <source>Start Application (&amp;global)</source>
       <translation>Uy&amp;gulamayı Başlat (Küresel)</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="226" />
+      <location filename="../Project.py" line="227" />
       <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="229" />
+      <location filename="../Project.py" line="230" />
       <source>&lt;b&gt;Start Application (global)&lt;/b&gt;&lt;p&gt;Starts a new global Django application using "django-admin.py startapp".&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="239" />
+      <location filename="../Project.py" line="240" />
       <source>Start Application (local)</source>
       <translation>Uygulamayı Başlat (yerel)</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="240" />
+      <location filename="../Project.py" line="241" />
       <source>Start Application (&amp;local)</source>
       <translation>Uygulamayı Başlat (yere&amp;l)</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="247" />
+      <location filename="../Project.py" line="248" />
       <source>Starts a new local Django application</source>
       <translation>Yeni bir Django uygulaması başlat</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="250" />
+      <location filename="../Project.py" line="251" />
       <source>&lt;b&gt;Start Application (local)&lt;/b&gt;&lt;p&gt;Starts a new local Django application using "manage.py startapp".&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="264" />
+      <location filename="../Project.py" line="265" />
       <source>Run Server</source>
       <translation>Sunucuyu Çalıştır</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="265" />
+      <location filename="../Project.py" line="266" />
       <source>Run &amp;Server</source>
       <translation>&amp;Sunucuyu Çalıştır</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="271" />
+      <location filename="../Project.py" line="272" />
       <source>Starts the Django Web server</source>
       <translation>Django Web sunucusunu başlat</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="273" />
+      <location filename="../Project.py" line="274" />
       <source>&lt;b&gt;Run Server&lt;/b&gt;&lt;p&gt;Starts the Django Web server using "manage.py runserver".&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="2266" />
-      <location filename="../Project.py" line="283" />
+      <location filename="../Project.py" line="2321" />
+      <location filename="../Project.py" line="284" />
       <source>Run Web-Browser</source>
       <translation>Web-Gözatıcısını Çalıştır</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="284" />
+      <location filename="../Project.py" line="285" />
       <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="291" />
+      <location filename="../Project.py" line="292" />
       <source>Starts the default Web-Browser with the URL of the Django Web server</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="297" />
+      <location filename="../Project.py" line="298" />
       <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" />
     </message>
     <message>
-      <location filename="../Project.py" line="2963" />
-      <location filename="../Project.py" line="311" />
+      <location filename="../Project.py" line="3034" />
+      <location filename="../Project.py" line="312" />
       <source>Create Cache Tables</source>
       <translation type="unfinished">Gizli Tabloları Oluştur</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="312" />
+      <location filename="../Project.py" line="313" />
       <source>C&amp;reate Cache Tables</source>
       <translation type="unfinished">Gizli Tabloları Olu&amp;ştur</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="319" />
+      <location filename="../Project.py" line="320" />
       <source>Creates the tables needed to use the SQL cache backend</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="322" />
+      <location filename="../Project.py" line="323" />
       <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" />
     </message>
     <message>
-      <location filename="../Project.py" line="336" />
+      <location filename="../Project.py" line="337" />
       <source>Help</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="336" />
+      <location filename="../Project.py" line="337" />
       <source>&amp;Help</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="338" />
+      <location filename="../Project.py" line="339" />
       <source>Shows the Django help index</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="340" />
+      <location filename="../Project.py" line="341" />
       <source>&lt;b&gt;Help&lt;/b&gt;&lt;p&gt;Shows the Django help index page.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="1585" />
-      <location filename="../Project.py" line="350" />
+      <location filename="../Project.py" line="1635" />
+      <location filename="../Project.py" line="351" />
       <source>About Django</source>
       <translation>Django Hakkında</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="351" />
+      <location filename="../Project.py" line="352" />
       <source>About D&amp;jango</source>
       <translation>D&amp;jango Hakkında</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="357" />
+      <location filename="../Project.py" line="358" />
       <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="359" />
+      <location filename="../Project.py" line="360" />
       <source>&lt;b&gt;About Django&lt;/b&gt;&lt;p&gt;Shows some information about Django.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="3680" />
+      <location filename="../Project.py" line="3774" />
+      <location filename="../Project.py" line="374" />
       <location filename="../Project.py" line="373" />
-      <location filename="../Project.py" line="372" />
       <source>Check Project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="380" />
+      <location filename="../Project.py" line="381" />
       <source>Inspects the Django project for common problems</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="383" />
+      <location filename="../Project.py" line="384" />
       <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" />
     </message>
     <message>
-      <location filename="../Project.py" line="404" />
+      <location filename="../Project.py" line="405" />
       <source>Current Database</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="406" />
+      <location filename="../Project.py" line="407" />
       <source>Selects the current database</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="408" />
+      <location filename="../Project.py" line="409" />
       <source>&lt;b&gt;Current Database&lt;/b&gt;&lt;p&gt;Selects the database name to be used by all database actions. An empty database name indicates to use the default name.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="420" />
+      <location filename="../Project.py" line="421" />
       <source>Introspect</source>
       <translation>İçgözlem</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="421" />
+      <location filename="../Project.py" line="422" />
       <source>&amp;Introspect</source>
       <translation>&amp;İçgözlem</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="428" />
+      <location filename="../Project.py" line="429" />
       <source>Introspects the database tables and outputs a Django model module</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="431" />
+      <location filename="../Project.py" line="432" />
       <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" />
     </message>
     <message>
-      <location filename="../Project.py" line="441" />
+      <location filename="../Project.py" line="442" />
       <source>Flush</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="441" />
+      <location filename="../Project.py" line="442" />
       <source>&amp;Flush</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="444" />
+      <location filename="../Project.py" line="445" />
       <source>Returns all database tables to the state just after their installation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="450" />
+      <location filename="../Project.py" line="451" />
       <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" />
     </message>
     <message>
-      <location filename="../Project.py" line="460" />
+      <location filename="../Project.py" line="461" />
       <source>Start Client Console</source>
       <translation>İstemci Uçbirimini Başlat</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="461" />
+      <location filename="../Project.py" line="462" />
       <source>Start &amp;Client Console</source>
       <translation>İstem&amp;ci Uçbirimini Başlat</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="468" />
+      <location filename="../Project.py" line="469" />
       <source>Starts a console window for the database client</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="471" />
+      <location filename="../Project.py" line="472" />
       <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" />
     </message>
     <message>
-      <location filename="../Project.py" line="2512" />
-      <location filename="../Project.py" line="2415" />
-      <location filename="../Project.py" line="484" />
+      <location filename="../Project.py" line="2571" />
+      <location filename="../Project.py" line="2470" />
+      <location filename="../Project.py" line="485" />
       <source>Flush Database</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="485" />
+      <location filename="../Project.py" line="486" />
       <source>&amp;Flush Database</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="492" />
+      <location filename="../Project.py" line="493" />
       <source>Prints a list of statements to return all database tables to the state just after their installation</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="498" />
+      <location filename="../Project.py" line="499" />
       <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" />
     </message>
     <message>
-      <location filename="../Project.py" line="2519" />
-      <location filename="../Project.py" line="508" />
+      <location filename="../Project.py" line="2578" />
+      <location filename="../Project.py" line="509" />
       <source>Reset Sequences</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="509" />
+      <location filename="../Project.py" line="510" />
       <source>Reset &amp;Sequences</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="516" />
+      <location filename="../Project.py" line="517" />
       <source>Prints the SQL statements for resetting sequences for one or more applications</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="522" />
+      <location filename="../Project.py" line="523" />
       <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" />
     </message>
     <message>
-      <location filename="../Project.py" line="532" />
+      <location filename="../Project.py" line="533" />
       <source>Apply Migration</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="533" />
+      <location filename="../Project.py" line="534" />
       <source>&amp;Apply Migration</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="540" />
+      <location filename="../Project.py" line="541" />
       <source>Prints the SQL statements to apply a migration of an application</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="543" />
+      <location filename="../Project.py" line="544" />
       <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" />
     </message>
     <message>
-      <location filename="../Project.py" line="553" />
+      <location filename="../Project.py" line="554" />
       <source>Unapply Migration</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="554" />
+      <location filename="../Project.py" line="555" />
       <source>&amp;Unapply Migration</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="561" />
+      <location filename="../Project.py" line="562" />
       <source>Prints the SQL statements to unapply a migration of an application</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="566" />
+      <location filename="../Project.py" line="567" />
       <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" />
     </message>
     <message>
-      <location filename="../Project.py" line="2862" />
-      <location filename="../Project.py" line="582" />
+      <location filename="../Project.py" line="2932" />
+      <location filename="../Project.py" line="583" />
       <source>Diff Settings</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="583" />
+      <location filename="../Project.py" line="584" />
       <source>&amp;Diff Settings</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="590" />
+      <location filename="../Project.py" line="591" />
       <source>Shows the modification made to the settings</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="593" />
+      <location filename="../Project.py" line="594" />
       <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" />
     </message>
     <message>
-      <location filename="../Project.py" line="602" />
+      <location filename="../Project.py" line="603" />
       <source>Start Python Console</source>
       <translation>Python Uçbirimini çalıştır</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="603" />
+      <location filename="../Project.py" line="604" />
       <source>Start &amp;Python Console</source>
       <translation>&amp;Python Uçbinimini başlat</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="610" />
+      <location filename="../Project.py" line="611" />
       <source>Starts a Python interactive interpreter</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="613" />
+      <location filename="../Project.py" line="614" />
       <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" />
     </message>
     <message>
-      <location filename="../Project.py" line="2924" />
-      <location filename="../Project.py" line="622" />
+      <location filename="../Project.py" line="2994" />
+      <location filename="../Project.py" line="623" />
       <source>Send Test Email</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="623" />
+      <location filename="../Project.py" line="624" />
       <source>Send Test &amp;Email</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="629" />
+      <location filename="../Project.py" line="630" />
       <source>Send a test email through Django</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="631" />
+      <location filename="../Project.py" line="632" />
       <source>&lt;b&gt;Send Test Email&lt;/b&gt;&lt;p&gt;Sends a test email to confirm email sending through Django is working.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="2994" />
-      <location filename="../Project.py" line="645" />
+      <location filename="../Project.py" line="3067" />
+      <location filename="../Project.py" line="646" />
       <source>Dump Data</source>
       <translation>Boş Veri</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="646" />
+      <location filename="../Project.py" line="647" />
       <source>&amp;Dump Data</source>
       <translation>B&amp;oş Veri</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="652" />
+      <location filename="../Project.py" line="653" />
       <source>Dump the database data to a fixture</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="654" />
+      <location filename="../Project.py" line="655" />
       <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" />
     </message>
     <message>
-      <location filename="../Project.py" line="3037" />
-      <location filename="../Project.py" line="660" />
+      <location filename="../Project.py" line="3114" />
+      <location filename="../Project.py" line="661" />
       <source>Load Data</source>
       <translation>Veriyi Yükle</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="661" />
+      <location filename="../Project.py" line="662" />
       <source>&amp;Load Data</source>
       <translation>Veriyi Yük&amp;le</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="667" />
+      <location filename="../Project.py" line="668" />
       <source>Load data from fixture files</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="669" />
+      <location filename="../Project.py" line="670" />
       <source>&lt;b&gt;Load Data&lt;/b&gt;&lt;p&gt;Load data from fixture files.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="675" />
+      <location filename="../Project.py" line="676" />
       <source>Run Testsuite</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="676" />
+      <location filename="../Project.py" line="677" />
       <source>Run &amp;Testsuite</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="683" />
+      <location filename="../Project.py" line="684" />
       <source>Run the test suite for applications or the whole site</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="686" />
+      <location filename="../Project.py" line="687" />
       <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" />
     </message>
     <message>
+      <location filename="../Project.py" line="697" />
       <location filename="../Project.py" line="696" />
-      <location filename="../Project.py" line="695" />
       <source>Run Testsuite (-Wall)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="703" />
+      <location filename="../Project.py" line="704" />
       <source>Run the test suite for applications or the whole site with activated deprecation warnings</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="709" />
+      <location filename="../Project.py" line="710" />
       <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" />
     </message>
     <message>
-      <location filename="../Project.py" line="721" />
+      <location filename="../Project.py" line="722" />
       <source>Run Testserver</source>
       <translation>Testsunucusunu Çalıştır</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="722" />
+      <location filename="../Project.py" line="723" />
       <source>Run Test&amp;server</source>
       <translation>Test&amp;sunucusunu Çalıştır</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="729" />
+      <location filename="../Project.py" line="730" />
       <source>Run a development server with data from a set of fixtures</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="732" />
+      <location filename="../Project.py" line="733" />
       <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" />
     </message>
     <message>
-      <location filename="../Project.py" line="3198" />
-      <location filename="../Project.py" line="746" />
+      <location filename="../Project.py" line="3275" />
+      <location filename="../Project.py" line="747" />
       <source>Change Password</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="747" />
+      <location filename="../Project.py" line="748" />
       <source>Change &amp;Password</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="753" />
+      <location filename="../Project.py" line="754" />
       <source>Change the password of a user</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="755" />
+      <location filename="../Project.py" line="756" />
       <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" />
     </message>
     <message>
-      <location filename="../Project.py" line="764" />
+      <location filename="../Project.py" line="765" />
       <source>Create Superuser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="765" />
+      <location filename="../Project.py" line="766" />
       <source>Create &amp;Superuser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="771" />
+      <location filename="../Project.py" line="772" />
       <source>Create a superuser account</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="773" />
+      <location filename="../Project.py" line="774" />
       <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" />
     </message>
     <message>
-      <location filename="../Project.py" line="3252" />
-      <location filename="../Project.py" line="786" />
+      <location filename="../Project.py" line="3329" />
+      <location filename="../Project.py" line="787" />
       <source>Clear Sessions</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="787" />
+      <location filename="../Project.py" line="788" />
       <source>Clear &amp;Sessions</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="793" />
+      <location filename="../Project.py" line="794" />
       <source>Clear expired sessions</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="795" />
+      <location filename="../Project.py" line="796" />
       <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" />
     </message>
     <message>
-      <location filename="../Project.py" line="808" />
+      <location filename="../Project.py" line="809" />
       <source>Show Migrations</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="809" />
+      <location filename="../Project.py" line="810" />
       <source>&amp;Show Migrations</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="816" />
+      <location filename="../Project.py" line="817" />
       <source>Show a list of available migrations</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="819" />
+      <location filename="../Project.py" line="820" />
       <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" />
     </message>
     <message>
-      <location filename="../Project.py" line="829" />
+      <location filename="../Project.py" line="830" />
       <source>Show Migrations Plan</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="830" />
+      <location filename="../Project.py" line="831" />
       <source>Show Migrations &amp;Plan</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="837" />
+      <location filename="../Project.py" line="838" />
       <source>Show a list with the migrations plan</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="840" />
+      <location filename="../Project.py" line="841" />
       <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" />
     </message>
     <message>
-      <location filename="../Project.py" line="850" />
+      <location filename="../Project.py" line="851" />
       <source>Apply All Migrations</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="851" />
+      <location filename="../Project.py" line="852" />
       <source>&amp;Apply All Migrations</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="857" />
+      <location filename="../Project.py" line="858" />
       <source>Apply all available migrations</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="859" />
+      <location filename="../Project.py" line="860" />
       <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" />
     </message>
     <message>
-      <location filename="../Project.py" line="2630" />
+      <location filename="../Project.py" line="2696" />
+      <location filename="../Project.py" line="870" />
       <location filename="../Project.py" line="869" />
-      <location filename="../Project.py" line="868" />
       <source>Apply Selected Migrations</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="875" />
+      <location filename="../Project.py" line="876" />
       <source>Apply selected migrations</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="877" />
+      <location filename="../Project.py" line="878" />
       <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" />
     </message>
     <message>
-      <location filename="../Project.py" line="2690" />
-      <location filename="../Project.py" line="2683" />
-      <location filename="../Project.py" line="2650" />
-      <location filename="../Project.py" line="887" />
+      <location filename="../Project.py" line="2758" />
+      <location filename="../Project.py" line="2751" />
+      <location filename="../Project.py" line="2718" />
+      <location filename="../Project.py" line="888" />
       <source>Unapply Migrations</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="888" />
+      <location filename="../Project.py" line="889" />
       <source>&amp;Unapply Migrations</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="894" />
+      <location filename="../Project.py" line="895" />
       <source>Unapply all migrations for an app</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="896" />
+      <location filename="../Project.py" line="897" />
       <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" />
     </message>
     <message>
-      <location filename="../Project.py" line="2777" />
-      <location filename="../Project.py" line="906" />
+      <location filename="../Project.py" line="2845" />
+      <location filename="../Project.py" line="907" />
       <source>Make Migrations</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="907" />
+      <location filename="../Project.py" line="908" />
       <source>&amp;Make Migrations</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="914" />
+      <location filename="../Project.py" line="915" />
       <source>Generate migrations for the project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="917" />
+      <location filename="../Project.py" line="918" />
       <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" />
     </message>
     <message>
-      <location filename="../Project.py" line="2826" />
-      <location filename="../Project.py" line="2817" />
-      <location filename="../Project.py" line="926" />
+      <location filename="../Project.py" line="2896" />
+      <location filename="../Project.py" line="2885" />
+      <location filename="../Project.py" line="927" />
       <source>Squash Migrations</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="927" />
+      <location filename="../Project.py" line="928" />
       <source>S&amp;quash Migrations</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="934" />
+      <location filename="../Project.py" line="935" />
       <source>Squash migrations of an application of the project</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="937" />
+      <location filename="../Project.py" line="938" />
       <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" />
     </message>
     <message>
-      <location filename="../Project.py" line="955" />
+      <location filename="../Project.py" line="956" />
       <source>D&amp;jango</source>
       <translation>D&amp;jango</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="997" />
+      <location filename="../Project.py" line="998" />
       <source>&amp;Database</source>
       <translation>&amp;Veritabanı</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="1021" />
+      <location filename="../Project.py" line="1022" />
       <source>Show &amp;SQL</source>
       <translation>&amp;SQL u göster</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="1041" />
+      <location filename="../Project.py" line="1042" />
       <source>&amp;Migrations</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="1066" />
+      <location filename="../Project.py" line="1067" />
       <source>&amp;Tools</source>
       <translation>&amp;Araçlar</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="1086" />
+      <location filename="../Project.py" line="1087" />
       <source>T&amp;esting</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="1107" />
+      <location filename="../Project.py" line="1108" />
       <source>&amp;Authorization</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="1124" />
+      <location filename="../Project.py" line="1125" />
       <source>&amp;Session</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="1172" />
+      <location filename="../Project.py" line="1173" />
       <source>Open with {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="1186" />
+      <location filename="../Project.py" line="1187" />
       <source>New template...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="1196" />
+      <location filename="../Project.py" line="1197" />
       <source>Update all catalogs</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="1201" />
+      <location filename="../Project.py" line="1202" />
       <source>Update selected catalogs</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="1206" />
+      <location filename="../Project.py" line="1207" />
       <source>Update all catalogs (with obsolete)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="1211" />
+      <location filename="../Project.py" line="1212" />
       <source>Update selected catalogs (with obsolete)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="1214" />
+      <location filename="../Project.py" line="1215" />
       <source>Compile all catalogs</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="1219" />
+      <location filename="../Project.py" line="1220" />
       <source>Compile selected catalogs</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="1255" />
+      <location filename="../Project.py" line="1256" />
       <source>HTML Files (*.html);;HTML Files (*.htm);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="1311" />
-      <location filename="../Project.py" line="1280" />
-      <location filename="../Project.py" line="1260" />
+      <location filename="../Project.py" line="1361" />
+      <location filename="../Project.py" line="1296" />
+      <location filename="../Project.py" line="1279" />
+      <location filename="../Project.py" line="1259" />
       <source>New Form</source>
       <translation>Yeni Form</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="1281" />
+      <location filename="../Project.py" line="1280" />
       <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="1312" />
+      <location filename="../Project.py" line="1289" />
+      <source>Base Template</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project.py" line="1290" />
+      <source>Extending Template</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project.py" line="1291" />
+      <source>Standalone Template</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project.py" line="1292" />
+      <source>Empty Template</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project.py" line="1297" />
+      <source>Select a template type:</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Project.py" line="1362" />
       <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" />
     </message>
     <message>
-      <location filename="../Project.py" line="1586" />
+      <location filename="../Project.py" line="1636" />
       <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="{1}"&gt;{1}&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="1663" />
+      <location filename="../Project.py" line="1714" />
       <source>Select Applications</source>
       <translation>Uygulamayı Seç</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="1664" />
+      <location filename="../Project.py" line="1715" />
       <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="2147" />
-      <location filename="../Project.py" line="1850" />
+      <location filename="../Project.py" line="2202" />
+      <location filename="../Project.py" line="1901" />
       <source>Project</source>
       <translation>Proje</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="1851" />
+      <location filename="../Project.py" line="1902" />
       <source>Application</source>
       <translation>Uygulama</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="1855" />
+      <location filename="../Project.py" line="1906" />
       <source>Start Django</source>
       <translation>Djangoyu Başlat</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="1856" />
+      <location filename="../Project.py" line="1907" />
       <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" />
     </message>
     <message>
-      <location filename="../Project.py" line="1958" />
-      <location filename="../Project.py" line="1886" />
+      <location filename="../Project.py" line="2011" />
+      <location filename="../Project.py" line="1937" />
       <source>Start Django Project</source>
       <translation>Django Projesini Başlat</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="1894" />
+      <location filename="../Project.py" line="1945" />
       <source>&lt;p&gt;The Django project path &lt;b&gt;{0}&lt;/b&gt; exists already. Shall it be removed and recreated?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="1904" />
+      <location filename="../Project.py" line="1955" />
       <source>&lt;p&gt;Please add the files to the eric project manually.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="2005" />
-      <location filename="../Project.py" line="1923" />
+      <location filename="../Project.py" line="2058" />
+      <location filename="../Project.py" line="1974" />
       <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" />
     </message>
     <message>
-      <location filename="../Project.py" line="1934" />
+      <location filename="../Project.py" line="1986" />
       <source>Django project created successfully.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="1959" />
+      <location filename="../Project.py" line="2012" />
       <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="1987" />
+      <location filename="../Project.py" line="2040" />
       <source>Start Django Application</source>
       <translation>Django Uygulamasını Başlat</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="2023" />
+      <location filename="../Project.py" line="2077" />
       <source>Django application created successfully.</source>
       <translation>Django uygulaması başarıyla oluşturuldu.</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="2036" />
+      <location filename="../Project.py" line="2091" />
       <source>Start Global Django Application</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="2037" />
+      <location filename="../Project.py" line="2092" />
       <source>Enter the name of the new global Django application.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="2058" />
+      <location filename="../Project.py" line="2113" />
       <source>Start Local Django Application</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="2059" />
+      <location filename="../Project.py" line="2114" />
       <source>Enter the name of the new local Django application.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="2109" />
+      <location filename="../Project.py" line="2164" />
       <source>Select Project</source>
       <translation>Projeyi Seç</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="2110" />
+      <location filename="../Project.py" line="2165" />
       <source>Select the Django project to work with.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="2145" />
+      <location filename="../Project.py" line="2200" />
       <source>None</source>
       <translation>Yok</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="2151" />
+      <location filename="../Project.py" line="2206" />
       <source>&amp;Current Django project ({0})</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="3633" />
-      <location filename="../Project.py" line="3240" />
-      <location filename="../Project.py" line="3216" />
-      <location filename="../Project.py" line="3167" />
-      <location filename="../Project.py" line="3117" />
-      <location filename="../Project.py" line="2914" />
-      <location filename="../Project.py" line="2460" />
-      <location filename="../Project.py" line="2219" />
+      <location filename="../Project.py" line="3726" />
+      <location filename="../Project.py" line="3317" />
+      <location filename="../Project.py" line="3293" />
+      <location filename="../Project.py" line="3244" />
+      <location filename="../Project.py" line="3194" />
+      <location filename="../Project.py" line="2984" />
+      <location filename="../Project.py" line="2517" />
+      <location filename="../Project.py" line="2274" />
       <source>Process Generation Error</source>
       <translation>İşlem Üretecinde Hata</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="2220" />
+      <location filename="../Project.py" line="2275" />
       <source>The Django server could not be started.</source>
       <translation>Django sunucusu başlatılamadı.</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="2267" />
+      <location filename="../Project.py" line="2322" />
       <source>Could not start the web-browser for the url "{0}".</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="2341" />
+      <location filename="../Project.py" line="2396" />
       <source>Database Name</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="2342" />
+      <location filename="../Project.py" line="2397" />
       <source>Select a database name (leave empty for default):</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="2363" />
+      <location filename="../Project.py" line="2418" />
       <source>&lt;default&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="2365" />
+      <location filename="../Project.py" line="2420" />
       <source>&amp;Current Database ({0})</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="2386" />
+      <location filename="../Project.py" line="2441" />
       <source>Introspect Database</source>
       <translation>Veritabanı İnceleme</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="2420" />
+      <location filename="../Project.py" line="2475" />
       <source>Flushing the database will destroy all data. Are you sure?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="2432" />
+      <location filename="../Project.py" line="2488" />
       <source>Database tables flushed successfully.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="3241" />
-      <location filename="../Project.py" line="3217" />
-      <location filename="../Project.py" line="3118" />
-      <location filename="../Project.py" line="2915" />
-      <location filename="../Project.py" line="2461" />
+      <location filename="../Project.py" line="3318" />
+      <location filename="../Project.py" line="3294" />
+      <location filename="../Project.py" line="3195" />
+      <location filename="../Project.py" line="2985" />
+      <location filename="../Project.py" line="2518" />
       <source>The Django process could not be started.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="2563" />
-      <location filename="../Project.py" line="2500" />
+      <location filename="../Project.py" line="2625" />
+      <location filename="../Project.py" line="2557" />
       <source>SQL Files (*.sql)</source>
       <translation>SQL Dosyaları (*.sql)</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="2544" />
-      <location filename="../Project.py" line="2540" />
+      <location filename="../Project.py" line="2603" />
+      <location filename="../Project.py" line="2599" />
       <source>SQL Migrate</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="2818" />
-      <location filename="../Project.py" line="2684" />
-      <location filename="../Project.py" line="2631" />
-      <location filename="../Project.py" line="2540" />
+      <location filename="../Project.py" line="2886" />
+      <location filename="../Project.py" line="2752" />
+      <location filename="../Project.py" line="2697" />
+      <location filename="../Project.py" line="2599" />
       <source>No migrations available.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="2652" />
+      <location filename="../Project.py" line="2720" />
       <source>Apply Migrations</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="2691" />
+      <location filename="../Project.py" line="2759" />
       <source>Select an application:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="2948" />
+      <location filename="../Project.py" line="3018" />
       <source>Test Email sent successfully.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="2949" />
+      <location filename="../Project.py" line="3019" />
       <source>Test Email could not be sent.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="2978" />
+      <location filename="../Project.py" line="3050" />
       <source>Cache tables created successfully.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="3018" />
+      <location filename="../Project.py" line="3091" />
       <source>JSON Files (*.json)</source>
       <translation>JSON Dosyaları (*.json)</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="3020" />
+      <location filename="../Project.py" line="3093" />
       <source>XML Files (*.xml)</source>
       <translation>XML Dosyaları (*.xml)</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="3022" />
+      <location filename="../Project.py" line="3095" />
       <source>YAML Files (*.yaml)</source>
       <translation>YAML Dosyaları (*.yaml)</translation>
     </message>
     <message>
-      <location filename="../Project.py" line="3168" />
+      <location filename="../Project.py" line="3245" />
       <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="3199" />
+      <location filename="../Project.py" line="3276" />
       <source>Enter the name of the user:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="3265" />
+      <location filename="../Project.py" line="3343" />
       <source>Expired sessions cleared successfully.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="3341" />
+      <location filename="../Project.py" line="3420" />
       <source>Initializing message catalog for '{0}'</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="3599" />
-      <location filename="../Project.py" line="3540" />
+      <location filename="../Project.py" line="3690" />
+      <location filename="../Project.py" line="3629" />
+      <location filename="../Project.py" line="3601" />
+      <location filename="../Project.py" line="3567" />
       <location filename="../Project.py" line="3514" />
-      <location filename="../Project.py" line="3482" />
-      <location filename="../Project.py" line="3431" />
-      <location filename="../Project.py" line="3386" />
-      <location filename="../Project.py" line="3355" />
+      <location filename="../Project.py" line="3467" />
+      <location filename="../Project.py" line="3434" />
       <source>No current site selected or no site created yet. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="3360" />
+      <location filename="../Project.py" line="3440" />
       <source>
 Message catalog initialized successfully.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="3467" />
-      <location filename="../Project.py" line="3378" />
+      <location filename="../Project.py" line="3552" />
+      <location filename="../Project.py" line="3459" />
       <source>Updating message catalogs</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="3560" />
-      <location filename="../Project.py" line="3449" />
-      <location filename="../Project.py" line="3405" />
+      <location filename="../Project.py" line="3649" />
+      <location filename="../Project.py" line="3532" />
+      <location filename="../Project.py" line="3486" />
       <source>No locales detected. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="3519" />
-      <location filename="../Project.py" line="3487" />
-      <location filename="../Project.py" line="3454" />
-      <location filename="../Project.py" line="3410" />
+      <location filename="../Project.py" line="3607" />
+      <location filename="../Project.py" line="3573" />
+      <location filename="../Project.py" line="3538" />
+      <location filename="../Project.py" line="3492" />
       <source>
 Message catalogs updated successfully.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="3500" />
-      <location filename="../Project.py" line="3423" />
+      <location filename="../Project.py" line="3587" />
+      <location filename="../Project.py" line="3506" />
       <source>Updating message catalogs (keeping obsolete messages)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="3584" />
-      <location filename="../Project.py" line="3532" />
+      <location filename="../Project.py" line="3675" />
+      <location filename="../Project.py" line="3621" />
       <source>Compiling message catalogs</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="3604" />
-      <location filename="../Project.py" line="3565" />
+      <location filename="../Project.py" line="3696" />
+      <location filename="../Project.py" line="3655" />
       <source>
 Message catalogs compiled successfully.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Project.py" line="3634" />
+      <location filename="../Project.py" line="3727" />
       <source>The translations editor process ({0}) could not be started.</source>
       <translation type="unfinished" />
     </message>
@@ -2023,9 +2049,9 @@
   <context>
     <name>ProjectDjangoPlugin</name>
     <message>
-      <location filename="../../PluginProjectDjango.py" line="439" />
-      <location filename="../../PluginProjectDjango.py" line="203" />
-      <location filename="../../PluginProjectDjango.py" line="92" />
+      <location filename="../../PluginProjectDjango.py" line="442" />
+      <location filename="../../PluginProjectDjango.py" line="206" />
+      <location filename="../../PluginProjectDjango.py" line="95" />
       <source>Django</source>
       <translation>Django(jango)</translation>
     </message>

eric ide

mercurial