interval as '(learning)' in browser

This commit is contained in:
Damien Elmes 2012-08-25 20:48:42 +09:00
parent 73a7991940
commit 6346e97e13

View file

@ -217,6 +217,8 @@ class DataModel(QAbstractTableModel):
elif type == "cardIvl": elif type == "cardIvl":
if c.type == 0: if c.type == 0:
return _("(new)") return _("(new)")
elif c.type == 1:
return _("(learning)")
return fmtTimeSpan(c.ivl*86400) return fmtTimeSpan(c.ivl*86400)
elif type == "cardEase": elif type == "cardEase":
if c.type == 0: if c.type == 0: