From c2b99e2de633a8ec9edefce892854d036f9f3fe3 Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Sat, 18 Apr 2009 18:20:20 +0900 Subject: [PATCH] add correct over a month to daily stats --- ankiqt/ui/status.py | 2 ++ 1 file changed, 2 insertions(+) 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") + "

"