mirror of
https://github.com/ankitects/anki.git
synced 2025-11-08 21:57:12 -05:00
fix rev order and add placeholder in ints[]
This commit is contained in:
parent
46443762c0
commit
0161ebd9f1
2 changed files with 4 additions and 4 deletions
|
|
@ -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():
|
||||
|
|
|
|||
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Reference in a new issue