From ca7662ba728f9268570440d4712cfeb8e297e046 Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Mon, 14 May 2012 06:24:11 +0900 Subject: [PATCH] deck percentage -> percentage --- anki/stats.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/anki/stats.py b/anki/stats.py index 862f2ad30..1ee281451 100644 --- a/anki/stats.py +++ b/anki/stats.py @@ -384,7 +384,7 @@ group by day order by day)""" % lim, totd.append((grp, tot/float(all)*100)) txt = self._title(_("Intervals"), _("Delays until reviews are shown again.")) - txt += self._graph(id="ivl", ylabel2=_("Deck Percentage"), data=[ + txt += self._graph(id="ivl", ylabel2=_("Percentage"), data=[ dict(data=ivls, color=colIvl), dict(data=totd, color=colCum, yaxis=2, bars={'show': False}, lines=dict(show=True), stack=False)