diff --git a/ankiqt/ui/status.py b/ankiqt/ui/status.py index d57e928d7..83b6af118 100644 --- a/ankiqt/ui/status.py +++ b/ankiqt/ui/status.py @@ -215,6 +215,8 @@ too often, higher and you're spending too much time reviewing.""") tip += "

" + _("Reviews today") + "

" tip += "" + _("Correct today: ") + anki.utils.fmtPercentage(stats['dYesTotal%'], point=1) tip += " (" + _("%(partOf)d of %(totalSum)d") % {'partOf' : stats['dYesTotal'], 'totalSum' : stats['dTotal'] } + ")
" + tip += _("Correct over a month: ") + anki.utils.fmtPercentage(stats['dMatureYes%'], point=1) + tip += " (" + _("%(partOf)d of %(totalSum)d") % {'partOf' : stats['dMatureYes'], 'totalSum' : stats['dMatureTotal'] } + ")
" tip += _("Average time per answer: ") + anki.utils.fmtTimeSpan(stats['dAverageTime'], point=2) +"
" tip += _("Total review time: ") + anki.utils.fmtTimeSpan(stats['dReviewTime'], point=2) tip += "

" + _("All Reviews") + "

"