mirror of
https://github.com/ankitects/anki.git
synced 2025-09-24 16:56:36 -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 = _('''\
|
msg = _('''\
|
||||||
<style>b { color: #00f; }</style>
|
<style>b { color: #00f; }</style>
|
||||||
At the same time tomorrow:<br><br>
|
At the same time tomorrow:<br><br>
|
||||||
%(spc)s%(wait)s<br>
|
%(wait)s<br>
|
||||||
%(spc)s%(new)s''') % {
|
%(new)s''') % {
|
||||||
'new': ngettext("There will be <b>%d new</b> card.",
|
'new': ngettext("There will be <b>%d new</b> card.",
|
||||||
"There will be <b>%d new</b> cards.",
|
"There will be <b>%d new</b> cards.",
|
||||||
newCardsTomorrow) % newCardsTomorrow,
|
newCardsTomorrow) % newCardsTomorrow,
|
||||||
'wait': ngettext("There will be <b>%s review</b>.",
|
'wait': ngettext("There will be <b>%s review</b>.",
|
||||||
"There will be <b>%s reviews</b>.", cards) % cards,
|
"There will be <b>%s reviews</b>.", cards) % cards,
|
||||||
'spc': ' ' * 5,
|
|
||||||
}
|
}
|
||||||
if next - time.time() > 86400 and not newCardsTomorrow:
|
if next - time.time() > 86400 and not newCardsTomorrow:
|
||||||
msg = (_("The next card will be shown in <b>%s</b>.") %
|
msg = (_("The next card will be shown in <b>%s</b>.") %
|
||||||
|
|
Loading…
Reference in a new issue