1
0
Bifurcation 0

fix(models): typo podcat -> podcast

feat/models
Antoine 2021-10-26 15:37:00 +02:00
Parent cbdc3c920e
révision 0a4dcbae6a
4 fichiers modifiés avec 13 ajouts et 9 suppressions

Voir le fichier

@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-10-26 08:13-0500\n"
"POT-Creation-Date: 2021-10-26 08:34-0500\n"
"PO-Revision-Date: 2021-09-08 17:16+0200\n"
"Last-Translator: \n"
"Language-Team: \n"
@ -37,6 +37,10 @@ msgstr "URL externe du son"
msgid "publish date"
msgstr "date de publication"
#: models.py:102 models.py:103
msgid "podcats"
#: models.py:102
msgid "podcast"
msgstr "podcasts"
#: models.py:103
msgid "podcasts"
msgstr "podcasts"

Voir le fichier

@ -1,4 +1,4 @@
# Generated by Django 3.2.7 on 2021-10-26 12:51
# Generated by Django 3.2.7 on 2021-10-26 13:35
from django.db import migrations, models
import django.db.models.deletion
@ -13,8 +13,8 @@ class Migration(migrations.Migration):
initial = True
dependencies = [
('taggit', '0003_taggeditem_add_unique_index'),
('wagtailimages', '0023_add_choose_permissions'),
('taggit', '0003_taggeditem_add_unique_index'),
]
operations = [
@ -30,8 +30,8 @@ class Migration(migrations.Migration):
('picture', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='+', to='wagtailimages.image')),
],
options={
'verbose_name': 'podcats',
'verbose_name_plural': 'podcats',
'verbose_name': 'podcast',
'verbose_name_plural': 'podcasts',
},
),
migrations.CreateModel(

Voir le fichier

@ -99,5 +99,5 @@ class Podcast(ClusterableModel, AbstractTitleSlugModel):
return self.title
class Meta:
verbose_name = _('podcats')
verbose_name_plural = _('podcats')
verbose_name = _('podcast')
verbose_name_plural = _('podcasts')