mirror of
https://github.com/ankitects/anki.git
synced 2025-09-25 01:06:35 -04:00
make sure congrats screen is displayed using standard whitespace
This commit is contained in:
parent
feb0acf52c
commit
48257368cc
1 changed files with 2 additions and 1 deletions
|
@ -582,6 +582,7 @@ and priority in (1,2,3,4) and type in (0, 1)""", time=time)
|
||||||
|
|
||||||
def deckFinishedMsg(self):
|
def deckFinishedMsg(self):
|
||||||
return _('''
|
return _('''
|
||||||
|
<div style="white-space: normal;">
|
||||||
<h1>Congratulations!</h1>You have finished the deck for now.<br><br>
|
<h1>Congratulations!</h1>You have finished the deck for now.<br><br>
|
||||||
%(next)s
|
%(next)s
|
||||||
<br><br>
|
<br><br>
|
||||||
|
@ -590,7 +591,7 @@ and priority in (1,2,3,4) and type in (0, 1)""", time=time)
|
||||||
spaced</a> cards.<br>
|
spaced</a> cards.<br>
|
||||||
- There are <b>%(suspended)d</b>
|
- There are <b>%(suspended)d</b>
|
||||||
<a href="http://ichi2.net/anki/wiki/Key_Terms_and_Concepts#head-37d2db274e6caa23aef55e29655a6b806901774b">
|
<a href="http://ichi2.net/anki/wiki/Key_Terms_and_Concepts#head-37d2db274e6caa23aef55e29655a6b806901774b">
|
||||||
suspended</a> cards.''') % {
|
suspended</a> cards.</div>''') % {
|
||||||
"next": self.nextDueMsg(),
|
"next": self.nextDueMsg(),
|
||||||
"suspended": self.suspendedCardCount(),
|
"suspended": self.suspendedCardCount(),
|
||||||
"waiting": self.spacedCardCount()
|
"waiting": self.spacedCardCount()
|
||||||
|
|
Loading…
Reference in a new issue