From 5b47af293c474dae81802a5f5925a18b3c0ddd76 Mon Sep 17 00:00:00 2001 From: Jean-Marie Favreau Date: Wed, 1 May 2024 13:16:34 +0200 Subject: [PATCH] traduction des noms --- ...alter_duplicatedevents_options_and_more.py | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 src/agenda_culturel/migrations/0062_alter_duplicatedevents_options_and_more.py diff --git a/src/agenda_culturel/migrations/0062_alter_duplicatedevents_options_and_more.py b/src/agenda_culturel/migrations/0062_alter_duplicatedevents_options_and_more.py new file mode 100644 index 0000000..56a64d1 --- /dev/null +++ b/src/agenda_culturel/migrations/0062_alter_duplicatedevents_options_and_more.py @@ -0,0 +1,21 @@ +# Generated by Django 4.2.7 on 2024-05-01 07:52 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('agenda_culturel', '0061_auto_20240427_2326'), + ] + + operations = [ + migrations.AlterModelOptions( + name='duplicatedevents', + options={'verbose_name': 'Duplicated events', 'verbose_name_plural': 'Duplicated events'}, + ), + migrations.AlterModelOptions( + name='staticcontent', + options={'verbose_name': 'Static content', 'verbose_name_plural': 'Static contents'}, + ), + ]