diff --git a/ftl/core/scheduling.ftl b/ftl/core/scheduling.ftl index e74c98826..bdb27f723 100644 --- a/ftl/core/scheduling.ftl +++ b/ftl/core/scheduling.ftl @@ -93,7 +93,7 @@ scheduling-custom-study = custom study ## Scheduler upgrade -scheduling-update-soon = You are currently using Anki's old scheduler, which will be retired soon. Please make sure all of your devices are in sync, and then update to the new scheduler. +scheduling-update-soon = Anki 2.1 comes with a new scheduler, which fixes a number of issues that previous Anki versions had. Updating to it is recommended. scheduling-update-done = Scheduler updated successfully. scheduling-update-button = Update scheduling-update-later-button = Later diff --git a/qt/aqt/deckbrowser.py b/qt/aqt/deckbrowser.py index c5f4ef5d0..cd446fec9 100644 --- a/qt/aqt/deckbrowser.py +++ b/qt/aqt/deckbrowser.py @@ -386,7 +386,10 @@ class DeckBrowser: self.mw.col.upgrade_to_v2_scheduler() # not translated, as 2.15 should not be too far off - if askUser("Do you sync with AnkiDroid 2.14 or earlier?", defaultno=True): + if askUser( + "Do you use AnkiDroid <= 2.14, or plan to use it in the near future? If unsure, choose No. You can adjust the setting later in the preferences screen.", + defaultno=True, + ): prefs = self.mw.col.get_preferences() prefs.sched.new_timezone = False self.mw.col.set_preferences(prefs)