python
# settings.py
LANGUAGES = [
('en', 'English'),
]
USE_I18N = True
USE_TZ = True
msgid ""
msgstr ""
"Project-Id-Version: Django
"
"Report-Msgid-Bugs-To:
"
"POT-Creation-Date: 2021-10-01 00:00+0000
"
"Language-Team: Chinese (Simplified) (http://www.example.com/)
"
"MIME-Version: 1.0
"
"Content-Type: text/plain; charset=UTF-8
"
"Content-Transfer-Encoding: 8bit
"
"Plural-Forms: nplurals=2; plural=(n != 1);
"
msgid "Submit"
msgid "Cancel"
django-admin compilemessages
html+django
{# template.html #}
{% load i18n %}
<form method="post">
{% csrf_token %}
</form>