diff --git a/ankiqt/ui/status.py b/ankiqt/ui/status.py index 5724041c0..2013d11bc 100644 --- a/ankiqt/ui/status.py +++ b/ankiqt/ui/status.py @@ -229,16 +229,16 @@ class StatusView(object): 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 += _("Correct mature: ") + 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") + "

" - tip += "" + _("Correct over a month: ") + anki.utils.fmtPercentage(stats['gMatureYes%'], point=1) + tip += "" + _("Correct mature: ") + anki.utils.fmtPercentage(stats['gMatureYes%'], point=1) tip += " (" + _("%(partOf)d of %(totalSum)d") % {'partOf' : stats['gMatureYes'], 'totalSum' : stats['gMatureTotal'] } + ")
" tip += _("Average time per answer: ") + anki.utils.fmtTimeSpan(stats['gAverageTime'], point=2) +"
" tip += _("Total review time: ") + anki.utils.fmtTimeSpan(stats['gReviewTime'], point=2) +"
" - tip += _("Correct under a month: ") + anki.utils.fmtPercentage(stats['gYoungYes%'], point=1) + tip += _("Correct young: ") + anki.utils.fmtPercentage(stats['gYoungYes%'], point=1) tip += " (" + _("%(partOf)d of %(totalSum)d") % {'partOf' : stats['gYoungYes'], 'totalSum' : stats['gYoungTotal'] } + ")

" tip += _("Correct first time: ") + anki.utils.fmtPercentage(stats['gNewYes%'], point=1) tip += " (" + _("%(partOf)d of %(totalSum)d") % {'partOf' : stats['gNewYes'], 'totalSum' : stats['gNewTotal'] } + ")
"