Fixed translation mistake for Peter Lundgren in class EventPage.

svn: r13135
This commit is contained in:
Rob G. Healey 2009-08-29 09:23:09 +00:00
parent c1a4897e66
commit 324a932813

View File

@ -1996,7 +1996,9 @@ class EventPage(BasePage):
body += eventdetail
# display page itle
eventdetail += Html('h3', '%s of %s' % (evt_type, self.get_name(person)), inline=True)
title = _('%(type)s of %(name)s') % {'type' : evt_type,
'name' : self.get_name(person) }
eventdetail += Html('h3', title, inline=True)
# begin event detail table
with Html('table', class_='infolist eventlist') as table: