mirror of
https://github.com/ankitects/anki.git
synced 2025-09-24 16:56:36 -04:00
factor/ease
This commit is contained in:
parent
427ff5a263
commit
84501078e8
1 changed files with 5 additions and 5 deletions
|
@ -42,7 +42,7 @@ class CardStats(object):
|
|||
self.addLine(_("Due"), next)
|
||||
if c.queue == 2:
|
||||
self.addLine(_("Interval"), fmt(c.ivl * 86400))
|
||||
self.addLine(_("Factor"), "%d%%" % (c.factor/10.0))
|
||||
self.addLine(_("Ease"), "%d%%" % (c.factor/10.0))
|
||||
self.addLine(_("Reviews"), "%d" % c.reps)
|
||||
self.addLine(_("Lapses"), "%d" % c.lapses)
|
||||
(cnt, total) = self.col.db.first(
|
||||
|
@ -571,12 +571,12 @@ where did in %s """ % self._limit())
|
|||
self._line(i, _("Total notes"), f)
|
||||
(low, avg, high) = self._factors()
|
||||
if low:
|
||||
self._line(i, _("Lowest factor"), "%d%%" % low)
|
||||
self._line(i, _("Average factor"), "%d%%" % avg)
|
||||
self._line(i, _("Highest factor"), "%d%%" % high)
|
||||
self._line(i, _("Lowest ease"), "%d%%" % low)
|
||||
self._line(i, _("Average ease"), "%d%%" % avg)
|
||||
self._line(i, _("Highest ease"), "%d%%" % high)
|
||||
info = "<table width=100%>" + "".join(i) + "</table><p>"
|
||||
info += _('''\
|
||||
A card's <i>factor</i> is the size of the next interval \
|
||||
A card's <i>ease</i> is the size of the next interval \
|
||||
when you answer "good" on a review.''')
|
||||
txt = self._title(_("Cards Types"),
|
||||
_("The division of cards in your deck(s)."))
|
||||
|
|
Loading…
Reference in a new issue