From 04ff4cc3fc575e2cc37718618affa54b4983b65d Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Sat, 26 Oct 2013 10:53:15 +0900 Subject: [PATCH] make 's' translatable in stats thanks to "lumininous spice" for the heads up --- anki/stats.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/anki/stats.py b/anki/stats.py index 8171a4ae6..7db78a411 100644 --- a/anki/stats.py +++ b/anki/stats.py @@ -356,7 +356,7 @@ group by day order by day""" % (self._limit(), lim), perMin = ngettext("%d card/minute", "%d cards/minute", perMin) % perMin self._line( i, _("Average answer time"), - "%0.1fs (%s)" % ((tot*60)/total, perMin)) + _("%(a)0.1fs (%(b)s)" % dict(a=(tot*60)/total, b=perMin))) return self._lineTbl(i), int(tot) def _splitRepData(self, data, spec):