mirror of
https://github.com/ankitects/anki.git
synced 2025-09-22 07:52:24 -04:00
add separators for GUI, tweak cram option
This commit is contained in:
parent
6a04679e72
commit
d7d0fd5ca9
1 changed files with 6 additions and 3 deletions
|
@ -86,16 +86,19 @@ def dynExamples():
|
||||||
# defaults are resched=True, steps=None, deck=True
|
# defaults are resched=True, steps=None, deck=True
|
||||||
return [
|
return [
|
||||||
[_("<select preset>"), None],
|
[_("<select preset>"), None],
|
||||||
|
None,
|
||||||
[_("Preview all new cards"), dict(
|
[_("Preview all new cards"), dict(
|
||||||
search="is:new", resched=False, steps="1", order=5)],
|
search="is:new", resched=False, steps="1", order=5)],
|
||||||
[_("Preview cards added today"), dict(
|
[_("Preview cards added today"), dict(
|
||||||
search="added:1", resched=False, steps="1", order=5)],
|
search="added:1", resched=False, steps="1", order=5)],
|
||||||
|
None,
|
||||||
[_("Review today's forgotten cards"), dict(
|
[_("Review today's forgotten cards"), dict(
|
||||||
search="rated:1:1", order=4)],
|
search="rated:1:1", order=4)],
|
||||||
[_("Review ahead by two days"), dict(
|
[_("Review ahead by two days"), dict(
|
||||||
search="prop:due<=2", order=6)],
|
search="prop:due<=2", order=6)],
|
||||||
[_("Review due cards with tag"), dict(
|
[_("Review due cards with tag"), dict(
|
||||||
search="is:due tag:%s" % _("type_tag_here"), order=6)]
|
search="is:due tag:%s" % _("type_tag_here"), order=6)],
|
||||||
[_("Study all cards in random order"), dict(
|
None,
|
||||||
search="", order=1, steps="1 10")],
|
[_("Cram all cards"), dict(
|
||||||
|
search="", order=0, steps="1 10 20")],
|
||||||
]
|
]
|
||||||
|
|
Loading…
Reference in a new issue