mirror of
https://github.com/ankitects/anki.git
synced 2025-09-23 08:22:24 -04:00
use 'initial group' instead of 'fact group'
This commit is contained in:
parent
10426b6606
commit
9b56c862cd
1 changed files with 2 additions and 2 deletions
|
@ -50,8 +50,8 @@ class CardStats(object):
|
||||||
self.addLine(_("Total Time"), fmt(total, point=2))
|
self.addLine(_("Total Time"), fmt(total, point=2))
|
||||||
self.addLine(_("Model"), c.model().name)
|
self.addLine(_("Model"), c.model().name)
|
||||||
self.addLine(_("Template") + " "*5, c.template()['name'])
|
self.addLine(_("Template") + " "*5, c.template()['name'])
|
||||||
self.addLine(_("Card Group"), self.deck.groupName(c.gid))
|
self.addLine(_("Current Group"), self.deck.groupName(c.gid))
|
||||||
self.addLine(_("Fact Group"), self.deck.groupName(c.fact().gid))
|
self.addLine(_("Initial Group"), self.deck.groupName(c.fact().gid))
|
||||||
self.txt += "</table>"
|
self.txt += "</table>"
|
||||||
return self.txt
|
return self.txt
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue