i18n: verbose_name for link_page in link cell

This commit is contained in:
Thomas NOËL 2015-05-29 19:02:17 +02:00
parent fbbf96fe3c
commit 839c21715c
1 changed files with 2 additions and 1 deletions

View File

@ -442,7 +442,8 @@ class MenuCell(CellBase):
class LinkCell(CellBase):
title = models.CharField(_('Title'), max_length=150, blank=True)
url = models.URLField(_('URL'), blank=True)
link_page = models.ForeignKey('data.Page', related_name='link_cell', blank=True, null=True)
link_page = models.ForeignKey('data.Page', related_name='link_cell', blank=True,
null=True, verbose_name=_('Internal link'))
anchor = models.CharField(_('Anchor'), max_length=150, blank=True)
template_name = 'combo/link-cell.html'