From 78221100d32b61e435573ca98f71f16e3d2ae51e Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Fri, 9 Jan 2009 11:24:16 +0900 Subject: [PATCH] mention pygame not required, change titlebar --- README | 2 +- ankiqt/ui/main.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README b/README index 10d9e5e2e..27f879c91 100644 --- a/README +++ b/README @@ -20,7 +20,7 @@ For furigana generation: For audio support: -- pygame +- mplayer Running / Installation ------------------------------------- diff --git a/ankiqt/ui/main.py b/ankiqt/ui/main.py index 1a6572361..ddb06753b 100644 --- a/ankiqt/ui/main.py +++ b/ankiqt/ui/main.py @@ -1621,12 +1621,12 @@ day = :d""", d=yesterday) deckpath = self.deck.name() if self.deck.modifiedSinceSave(): deckpath += "*" - title = _("%(path)s (%(facts)d facts, %(cards)d cards)" + title = _("%(path)s (%(due)d of %(cards)d due)" " - %(title)s") % { "path": deckpath, "title": title, "cards": self.deck.cardCount, - "facts": self.deck.factCount, + "due": self.deck.failedSoonCount + self.deck.revCount } self.setWindowTitle(title)