From 7725a93d24ce3ff12643c8134567063b30e34ff1 Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Wed, 2 Oct 2013 03:50:59 +0900 Subject: [PATCH] don't say tomorrow for burying until we introduce the new change --- anki/sched.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/anki/sched.py b/anki/sched.py index 148fc0d60..8fc61dff6 100644 --- a/anki/sched.py +++ b/anki/sched.py @@ -1154,8 +1154,12 @@ reached. You can increase the limit in the options, but please bear in mind that the more new cards you introduce, the higher your short-term review workload will become.""").replace("\n", " ")) if self.haveBuried(): + if self.haveCustomStudy: + now = " " + _("To see them now, click the Unbury button below.") + else: + now = "" line.append(_("""\ -Some related or buried cards were delayed until tomorrow.""").replace("\n", " ")) +Some related or buried cards were delayed until a later session.""")+now) if self.haveCustomStudy and not self.col.decks.current()['dyn']: line.append(_("""\ To study outside of the normal schedule, click the Custom Study button below."""))