diff --git a/aqt/deckbrowser.py b/aqt/deckbrowser.py index 6fe021ea7..129ab59d0 100644 --- a/aqt/deckbrowser.py +++ b/aqt/deckbrowser.py @@ -156,7 +156,8 @@ where id > ?""", (self.mw.col.sched.dayCutoff-86400)*1000) cards = cards or 0 thetime = thetime or 0 msgp1 = ngettext("%d card", "%d cards", cards) % cards - buf = _("Studied %(a)s in %(b)s today.") % dict(a=msgp1, b=fmtTimeSpan(thetime)) + buf = _("Studied %(a)s in %(b)s today.") % dict(a=msgp1, + b=fmtTimeSpan(thetime, unit=2)) return buf def _renderDeckTree(self, nodes, depth=0):