From 22d3954edb7c5bd4f0b998793cd62a79d3044fc8 Mon Sep 17 00:00:00 2001 From: Ryan Pearl Date: Sun, 19 Feb 2017 11:45:00 -0800 Subject: [PATCH] Fix some wording --- CatchupPlugin.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CatchupPlugin.py b/CatchupPlugin.py index c63b208..1914637 100644 --- a/CatchupPlugin.py +++ b/CatchupPlugin.py @@ -210,8 +210,8 @@ def update_stats(self): self.days_behind_label.setText("Days behind") self.days_behind.setText("%d" % len(days)) self.cards_behind_label.setText("Cards behind") - self.cards_behind.setText("New/Learn: %d\t In review: %d\t Total %d" % - (new_behind, review_behind, total_behind) + self.cards_behind.setText("Review: %d\tNew/Learn: %d\tTotal: %d" % ++ (review_behind, new_behind, total_behind) ) else: self.days_behind_label.setText("Intentionally left blank") @@ -254,7 +254,7 @@ def __init__(self): self.add_label("Actions") self.ctl_suspend = self.add_widget(QPushButton("Suspend overdue cards"), small=True) - self.ctl_unsuspend = self.add_widget(QPushButton("Unsuspend earliest cards"), small=True) + self.ctl_unsuspend = self.add_widget(QPushButton("Unsuspend review cards"), small=True) self.ctl_unsuspend_new = self.add_widget(QPushButton("Unsuspend new/learn cards"), small=True) self.ctl_suspend.clicked.connect(self.do_suspend)