diff --git a/anki/stats.py b/anki/stats.py
index 0dbead3c9..9386d4b9f 100644
--- a/anki/stats.py
+++ b/anki/stats.py
@@ -332,18 +332,18 @@ class DeckStats(object):
html += _("Total number of facts:") + " %d
" % d.factCount
html += "" + _("Card counts") + "
"
- html += _("Mature cards:") + " %(old)d (%(oldP)s)
" % {
+ html += _("Mature cards: ") + " %(old)d (%(oldP)s)
" % {
'old': stats['old'], 'oldP' : fmtPerc(stats['oldP'])}
- html += _("Young cards:") + " %(young)d (%(youngP)s)
" % {
+ html += _("Young cards: ") + " %(young)d (%(youngP)s)
" % {
'young': stats['young'], 'youngP' : fmtPerc(stats['youngP'])}
html += _("Unseen cards:") + " %(new)d (%(newP)s)
" % {
'new': stats['new'], 'newP' : fmtPerc(stats['newP'])}
html += "" + _("Correct answers") + "
"
- html += _("Mature cards:") + " " + fmtPerc(stats['gMatureYes%']) + (
+ html += _("Mature cards: ") + " " + fmtPerc(stats['gMatureYes%']) + (
" " + _("%(partOf)d of %(totalSum)d") % {
'partOf' : stats['gMatureYes'],
'totalSum' : stats['gMatureTotal'] } + "
")
- html += _("Young cards:") + " " + fmtPerc(stats['gYoungYes%']) + (
+ html += _("Young cards: ") + " " + fmtPerc(stats['gYoungYes%']) + (
" " + _("%(partOf)d of %(totalSum)d") % {
'partOf' : stats['gYoungYes'],
'totalSum' : stats['gYoungTotal'] } + "
")