From b8aabc466c74ff317a134408597c2d15800a85fb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ail=C3=A9?= <03ht@theodurr.fr> Date: Fri, 5 Nov 2021 20:28:37 +0100 Subject: [PATCH] Fixed locales +Pronoun description on the user's profile MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Ailé <03ht@theodurr.fr> --- core/migrations/0037_auto_20211105_1708.py | 18 ++++++++++++++++++ core/templates/core/user_detail.jinja | 2 +- locale/fr/LC_MESSAGES/django.po | 8 ++++++-- 3 files changed, 25 insertions(+), 3 deletions(-) create mode 100644 core/migrations/0037_auto_20211105_1708.py diff --git a/core/migrations/0037_auto_20211105_1708.py b/core/migrations/0037_auto_20211105_1708.py new file mode 100644 index 00000000..94c61fd7 --- /dev/null +++ b/core/migrations/0037_auto_20211105_1708.py @@ -0,0 +1,18 @@ +# Generated by Django 2.2.24 on 2021-11-05 16:08 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('core', '0036_auto_20211001_0248'), + ] + + operations = [ + migrations.AlterField( + model_name='user', + name='pronouns', + field=models.CharField(default='', max_length=64, verbose_name='pronouns'), + ), + ] diff --git a/core/templates/core/user_detail.jinja b/core/templates/core/user_detail.jinja index a86106c7..b3159303 100644 --- a/core/templates/core/user_detail.jinja +++ b/core/templates/core/user_detail.jinja @@ -26,7 +26,7 @@