mirror of
https://github.com/ankitects/anki.git
synced 2025-09-24 08:46:37 -04:00
get rid of spaces in congrats
This commit is contained in:
parent
40ed30b4ea
commit
b2832b2363
1 changed files with 2 additions and 3 deletions
|
@ -635,14 +635,13 @@ type = 0 and isDue = 1 and combinedDue <= :now""", now=time.time())
|
|||
msg = _('''\
|
||||
<style>b { color: #00f; }</style>
|
||||
At the same time tomorrow:<br><br>
|
||||
%(spc)s%(wait)s<br>
|
||||
%(spc)s%(new)s''') % {
|
||||
%(wait)s<br>
|
||||
%(new)s''') % {
|
||||
'new': ngettext("There will be <b>%d new</b> card.",
|
||||
"There will be <b>%d new</b> cards.",
|
||||
newCardsTomorrow) % newCardsTomorrow,
|
||||
'wait': ngettext("There will be <b>%s review</b>.",
|
||||
"There will be <b>%s reviews</b>.", cards) % cards,
|
||||
'spc': ' ' * 5,
|
||||
}
|
||||
if next - time.time() > 86400 and not newCardsTomorrow:
|
||||
msg = (_("The next card will be shown in <b>%s</b>.") %
|
||||
|
|
Loading…
Reference in a new issue