mirror of
https://github.com/ankitects/anki.git
synced 2025-09-25 01:06:35 -04:00
0s -> 0d
This commit is contained in:
parent
998ce99980
commit
157801621c
1 changed files with 3 additions and 1 deletions
|
@ -787,7 +787,9 @@ class Browser(QMainWindow):
|
|||
tstr = fmt % ("#000", tstr)
|
||||
if ease == 1:
|
||||
ease = fmt % (st.colRelearn, ease)
|
||||
if ivl >= 0:
|
||||
if ivl == 0:
|
||||
ivl = _("0d")
|
||||
elif ivl > 0:
|
||||
ivl = fmtTimeSpan(ivl*86400, short=True)
|
||||
else:
|
||||
ivl = self.cardStats.time(-ivl)
|
||||
|
|
Loading…
Reference in a new issue