mirror of
https://github.com/ankitects/anki.git
synced 2025-09-19 14:32:22 -04:00
cram -> filtered
This commit is contained in:
parent
d3eee07d4f
commit
3cd66f000f
1 changed files with 2 additions and 2 deletions
|
@ -258,7 +258,7 @@ class DataModel(QAbstractTableModel):
|
|||
|
||||
def nextDue(self, c, index):
|
||||
if c.odid:
|
||||
return _("(cram)")
|
||||
return _("(filtered)")
|
||||
elif c.queue == 0:
|
||||
return str(c.due)
|
||||
elif c.queue == 1:
|
||||
|
@ -813,7 +813,7 @@ border: 1px solid #000; padding: 3px; '>%s</div>""" % rep
|
|||
cnt += 1
|
||||
s += "<tr><td>%s</td>" % time.strftime(_("<b>%Y-%m-%d</b> @ %H:%M"),
|
||||
time.localtime(date))
|
||||
tstr = [_("Learn"), _("Review"), _("Relearn"), _("Cram"),
|
||||
tstr = [_("Learn"), _("Review"), _("Relearn"), _("Filtered"),
|
||||
_("Resched")][type]
|
||||
import anki.stats as st
|
||||
fmt = "<span style='color:%s'>%s</span>"
|
||||
|
|
Loading…
Reference in a new issue