From b507d7394d5596245ecc001777a98879a4b00d30 Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Sat, 11 Dec 2010 17:44:19 +0900 Subject: [PATCH] display # of facts, not cards, in model properties --- ankiqt/ui/modelproperties.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ankiqt/ui/modelproperties.py b/ankiqt/ui/modelproperties.py index f3af68c48..ccb3dcb22 100644 --- a/ankiqt/ui/modelproperties.py +++ b/ankiqt/ui/modelproperties.py @@ -83,7 +83,7 @@ class ModelProperties(QDialog): status="" else: status=_("; disabled") - label = _("%(name)s [%(cards)d cards%(status)s]") % { + label = _("%(name)s [%(cards)d facts%(status)s]") % { 'num': n, 'name': card.name, 'status': status,