use 'initial group' instead of 'fact group'

This commit is contained in:
Damien Elmes 2011-04-18 06:25:35 +09:00
parent 10426b6606
commit 9b56c862cd

View file

@ -50,8 +50,8 @@ class CardStats(object):
self.addLine(_("Total Time"), fmt(total, point=2))
self.addLine(_("Model"), c.model().name)
self.addLine(_("Template") + " "*5, c.template()['name'])
self.addLine(_("Card Group"), self.deck.groupName(c.gid))
self.addLine(_("Fact Group"), self.deck.groupName(c.fact().gid))
self.addLine(_("Current Group"), self.deck.groupName(c.gid))
self.addLine(_("Initial Group"), self.deck.groupName(c.fact().gid))
self.txt += "</table>"
return self.txt