mirror of
https://github.com/ankitects/anki.git
synced 2025-09-24 16:56:36 -04:00
display "if you studied every day" only when appropriate
(If you in fact did study every day during the period shown, it looks silly.)
This commit is contained in:
parent
6c304ebe2f
commit
6c07a58c2a
1 changed files with 4 additions and 2 deletions
|
@ -341,8 +341,10 @@ group by day order by day""" % (self._limit(), lim),
|
|||
tot *= 60
|
||||
self._line(i, _("Average for days studied"), self._avgDay(
|
||||
tot, studied, unit))
|
||||
self._line(i, _("If you studied every day"), self._avgDay(
|
||||
tot, period, unit))
|
||||
if studied != period:
|
||||
# don't display if you did study every day
|
||||
self._line(i, _("If you studied every day"), self._avgDay(
|
||||
tot, period, unit))
|
||||
if total and tot:
|
||||
perMin = total / float(tot)
|
||||
perMin = ngettext("%d card/minute", "%d cards/minute", perMin) % perMin
|
||||
|
|
Loading…
Reference in a new issue