fix typo in translation

This commit is contained in:
bkfox
2016-10-10 16:47:37 +02:00
parent 26888a45ed
commit 8ec3693b39
2 changed files with 14 additions and 14 deletions

View File

@ -699,12 +699,12 @@ class SectionImage(SectionRelativeItem):
width = models.SmallIntegerField(
_('width'),
blank=True, null=True,
help_text=_('if set and > 0, set a maximum width for the image'),
help_text=_('if set and > 0, sets a maximum width for the image'),
)
height = models.SmallIntegerField(
_('height'),
blank=True, null=True,
help_text=_('if set 0 and > 0, set a maximum height for the image'),
help_text=_('if set 0 and > 0, sets a maximum height for the image'),
)
resize_mode = models.SmallIntegerField(
verbose_name = _('resize mode'),