get rid of spaces in congrats

This commit is contained in:
Damien Elmes 2009-02-02 15:35:34 +09:00
parent 40ed30b4ea
commit b2832b2363

View file

@ -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': '&nbsp;' * 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>.") %