diff --git a/ftl/core/deck-config.ftl b/ftl/core/deck-config.ftl index f9cc9afc4..4142019e7 100644 --- a/ftl/core/deck-config.ftl +++ b/ftl/core/deck-config.ftl @@ -27,6 +27,11 @@ deck-config-limit-deck-v3 = When studying a deck that has subdecks inside it, the limits set on each subdeck control the maximum number of cards drawn from that particular deck. The selected deck's limits control the total cards that will be shown. +deck-config-limit-new-bound-by-reviews = + The review limit affects the new limit. For example, if your review limit is + set to 200, and you have 190 reviews waiting, a maximum of 10 new cards will + be introduced. If your review limit has been reached, no new cards will be + shown. ## New Cards section diff --git a/ts/deckoptions/DailyLimits.svelte b/ts/deckoptions/DailyLimits.svelte index 4897c71c4..bed449940 100644 --- a/ts/deckoptions/DailyLimits.svelte +++ b/ts/deckoptions/DailyLimits.svelte @@ -12,7 +12,12 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html let defaults = state.defaults; let parentLimits = state.parentLimits; - const v3Extra = state.v3Scheduler ? "\n\n" + tr.deckConfigLimitDeckV3() : ""; + const v3Extra = state.v3Scheduler + ? "\n\n" + + tr.deckConfigLimitNewBoundByReviews() + + "\n\n" + + tr.deckConfigLimitDeckV3() + : ""; $: newCardsGreaterThanParent = !state.v3Scheduler && $config.newPerDay > $parentLimits.newCards