mirror of
https://github.com/ankitects/anki.git
synced 2025-09-23 16:26:40 -04:00
don't say tomorrow for burying until we introduce the new change
This commit is contained in:
parent
3d33436a86
commit
7725a93d24
1 changed files with 5 additions and 1 deletions
|
@ -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
|
bear in mind that the more new cards you introduce, the higher
|
||||||
your short-term review workload will become.""").replace("\n", " "))
|
your short-term review workload will become.""").replace("\n", " "))
|
||||||
if self.haveBuried():
|
if self.haveBuried():
|
||||||
|
if self.haveCustomStudy:
|
||||||
|
now = " " + _("To see them now, click the Unbury button below.")
|
||||||
|
else:
|
||||||
|
now = ""
|
||||||
line.append(_("""\
|
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']:
|
if self.haveCustomStudy and not self.col.decks.current()['dyn']:
|
||||||
line.append(_("""\
|
line.append(_("""\
|
||||||
To study outside of the normal schedule, click the Custom Study button below."""))
|
To study outside of the normal schedule, click the Custom Study button below."""))
|
||||||
|
|
Loading…
Reference in a new issue