mirror of
https://github.com/ankitects/anki.git
synced 2025-11-09 14:17:13 -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():
|
def revCardOrderLabels():
|
||||||
return {
|
return {
|
||||||
0: _("Review cards from largest interval"),
|
0: _("Review cards in date due order"),
|
||||||
1: _("Review cards from smallest interval"),
|
1: _("Review cards from largest interval"),
|
||||||
2: _("Review cards in order due"),
|
2: _("Review cards from smallest interval"),
|
||||||
}
|
}
|
||||||
|
|
||||||
def alignmentLabels():
|
def alignmentLabels():
|
||||||
|
|
|
||||||
|
|
@ -23,7 +23,7 @@ defaultConf = {
|
||||||
'name': _("Default"),
|
'name': _("Default"),
|
||||||
'new': {
|
'new': {
|
||||||
'delays': [1, 10],
|
'delays': [1, 10],
|
||||||
'ints': [1, 4],
|
'ints': [1, 4, 7], # 7 is not currently used
|
||||||
'initialFactor': 2500,
|
'initialFactor': 2500,
|
||||||
'order': NEW_TODAY_ORD,
|
'order': NEW_TODAY_ORD,
|
||||||
'perDay': 20,
|
'perDay': 20,
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue