mirror of
https://github.com/ankitects/anki.git
synced 2025-09-19 14:32:22 -04:00
Add deck and day limits mock to deck options
This commit is contained in:
parent
2ce1b313bf
commit
0775814989
2 changed files with 48 additions and 0 deletions
|
@ -35,6 +35,10 @@ deck-config-limit-new-bound-by-reviews =
|
|||
deck-config-limit-interday-bound-by-reviews =
|
||||
The review limit also affects interday learning cards. When applying the limit,
|
||||
interday learning cards are fetched first, then reviews, and finally new cards.
|
||||
deck-config-deck-review-limit = Deck-specific reviews / day
|
||||
deck-config-deck-new-limit = Deck-specific new / day
|
||||
deck-config-today-review-limit = Deck-specific reviews / day for today
|
||||
deck-config-today-new-limit = Deck-specific new / day for today
|
||||
|
||||
## New Cards section
|
||||
|
||||
|
|
|
@ -70,5 +70,49 @@
|
|||
<Item>
|
||||
<Warning warning={reviewsTooLow} />
|
||||
</Item>
|
||||
|
||||
<Item>
|
||||
<SpinBoxRow
|
||||
value={-1}
|
||||
defaultValue={-1}
|
||||
markdownTooltip={tr.deckConfigNewLimitTooltip() + v3Extra}
|
||||
min={-1}
|
||||
>
|
||||
{tr.deckConfigDeckNewLimit()}
|
||||
</SpinBoxRow>
|
||||
</Item>
|
||||
|
||||
<Item>
|
||||
<SpinBoxRow
|
||||
value={-1}
|
||||
defaultValue={-1}
|
||||
markdownTooltip={tr.deckConfigReviewLimitTooltip() + v3Extra}
|
||||
min={-1}
|
||||
>
|
||||
{tr.deckConfigDeckReviewLimit()}
|
||||
</SpinBoxRow>
|
||||
</Item>
|
||||
|
||||
<Item>
|
||||
<SpinBoxRow
|
||||
value={-1}
|
||||
defaultValue={-1}
|
||||
markdownTooltip={tr.deckConfigNewLimitTooltip() + v3Extra}
|
||||
min={-1}
|
||||
>
|
||||
{tr.deckConfigTodayNewLimit()}
|
||||
</SpinBoxRow>
|
||||
</Item>
|
||||
|
||||
<Item>
|
||||
<SpinBoxRow
|
||||
value={-1}
|
||||
defaultValue={-1}
|
||||
markdownTooltip={tr.deckConfigReviewLimitTooltip() + v3Extra}
|
||||
min={-1}
|
||||
>
|
||||
{tr.deckConfigTodayReviewLimit()}
|
||||
</SpinBoxRow>
|
||||
</Item>
|
||||
</DynamicallySlottable>
|
||||
</TitledContainer>
|
||||
|
|
Loading…
Reference in a new issue