mirror of
https://github.com/ankitects/anki.git
synced 2025-09-20 06:52:21 -04:00
Merge branch 'master' of git://github.com/sanna/libanki
This commit is contained in:
commit
10816ee5d7
1 changed files with 7 additions and 8 deletions
|
@ -338,9 +338,8 @@ class DeckStats(object):
|
||||||
'young': stats['young'], 'youngP' : fmtPerc(stats['youngP'])}
|
'young': stats['young'], 'youngP' : fmtPerc(stats['youngP'])}
|
||||||
html += _("Unseen cards:") + " <b>%(new)d</b> (%(newP)s)<br><br>" % {
|
html += _("Unseen cards:") + " <b>%(new)d</b> (%(newP)s)<br><br>" % {
|
||||||
'new': stats['new'], 'newP' : fmtPerc(stats['newP'])}
|
'new': stats['new'], 'newP' : fmtPerc(stats['newP'])}
|
||||||
|
|
||||||
html += "<b>" + _("Correct answers") + "</b><br>"
|
html += "<b>" + _("Correct answers") + "</b><br>"
|
||||||
html += _("Mature cards:") + "<b>" + fmtPerc(stats['gMatureYes%']) + (
|
html += _("Mature cards:") + " <b>" + fmtPerc(stats['gMatureYes%']) + (
|
||||||
"</b> " + _("%(partOf)d of %(totalSum)d") % {
|
"</b> " + _("%(partOf)d of %(totalSum)d") % {
|
||||||
'partOf' : stats['gMatureYes'],
|
'partOf' : stats['gMatureYes'],
|
||||||
'totalSum' : stats['gMatureTotal'] } + "<br>")
|
'totalSum' : stats['gMatureTotal'] } + "<br>")
|
||||||
|
|
Loading…
Reference in a new issue