Revert "Add deck and day limits mock to deck options"

This reverts commit 0775814989.
This commit is contained in:
RumovZ 2022-07-14 21:34:29 +02:00
parent 0775814989
commit b10cdef20b
2 changed files with 0 additions and 48 deletions

View file

@ -35,10 +35,6 @@ deck-config-limit-new-bound-by-reviews =
deck-config-limit-interday-bound-by-reviews = deck-config-limit-interday-bound-by-reviews =
The review limit also affects interday learning cards. When applying the limit, The review limit also affects interday learning cards. When applying the limit,
interday learning cards are fetched first, then reviews, and finally new cards. 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 ## New Cards section

View file

@ -70,49 +70,5 @@
<Item> <Item>
<Warning warning={reviewsTooLow} /> <Warning warning={reviewsTooLow} />
</Item> </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> </DynamicallySlottable>
</TitledContainer> </TitledContainer>