diff --git a/anki/consts.py b/anki/consts.py index a796cc2a4..c39a866b8 100644 --- a/anki/consts.py +++ b/anki/consts.py @@ -64,9 +64,9 @@ def newCardSchedulingLabels(): def revCardOrderLabels(): return { - 0: _("Review cards from largest interval"), - 1: _("Review cards from smallest interval"), - 2: _("Review cards in order due"), + 0: _("Review cards in date due order"), + 1: _("Review cards from largest interval"), + 2: _("Review cards from smallest interval"), } def alignmentLabels(): diff --git a/anki/decks.py b/anki/decks.py index cb695263f..259f3bfab 100644 --- a/anki/decks.py +++ b/anki/decks.py @@ -23,7 +23,7 @@ defaultConf = { 'name': _("Default"), 'new': { 'delays': [1, 10], - 'ints': [1, 4], + 'ints': [1, 4, 7], # 7 is not currently used 'initialFactor': 2500, 'order': NEW_TODAY_ORD, 'perDay': 20,