Skip to content

Commit

Permalink
Fix some wording
Browse files Browse the repository at this point in the history
  • Loading branch information
rpearl committed Feb 19, 2017
1 parent 00461b3 commit 22d3954
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions CatchupPlugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down Expand Up @@ -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)
Expand Down

0 comments on commit 22d3954

Please sign in to comment.