add missing translation for Publication.body

This commit is contained in:
bkfox
2017-01-08 22:50:12 +01:00
parent c6723bf689
commit 1d46348518
5 changed files with 58 additions and 45 deletions

View File

@ -256,7 +256,11 @@ class Publication(Page):
help_text = _('allow comments')
)
body = RichTextField(blank=True)
body = RichTextField(
_('body'),
blank=True,
help_text = _('the publication itself')
)
cover = models.ForeignKey(
'wagtailimages.Image',
verbose_name = _('cover'),