diff --git a/ftl/core/deck-config.ftl b/ftl/core/deck-config.ftl index 15e87d776..f60ef72f9 100644 --- a/ftl/core/deck-config.ftl +++ b/ftl/core/deck-config.ftl @@ -461,6 +461,12 @@ deck-config-answer-hard = Answer Hard deck-config-answer-good = Answer Good deck-config-days-to-simulate = Days to simulate deck-config-desired-retention-below-optimal = Your desired retention is below optimal. Increasing it is recommended. +deck-config-fsrs-simulator-y-axis-title-time = Review Time/Day +deck-config-fsrs-simulator-y-axis-title-count = Review Count/Day +deck-config-fsrs-simulator-experimental = FSRS simulator (experimental) +deck-config-additional-new-cards-to-simulate = Additional new cards to simulate +deck-config-simulate = Simulate +deck-config-clear-last-simulate = Clear last simulation ## NO NEED TO TRANSLATE. This text is no longer used by Anki, and will be removed in the future. diff --git a/ts/routes/deck-options/FsrsOptions.svelte b/ts/routes/deck-options/FsrsOptions.svelte index 921187716..7a34d7ebe 100644 --- a/ts/routes/deck-options/FsrsOptions.svelte +++ b/ts/routes/deck-options/FsrsOptions.svelte @@ -293,8 +293,8 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html let tableData: TableDatum[] = [] as any; const bounds = defaultGraphBounds(); + bounds.marginLeft += 8; let svg = null as HTMLElement | SVGElement | null; - const title = tr.statisticsReviewsTitle(); let simulationNumber = 0; let points: Point[] = []; @@ -492,7 +492,7 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
- FSRS simulator (experimental) + {tr.deckConfigFsrsSimulatorExperimental()} openHelpModal("simulateFsrsReview")}> - Additional new cards to simulate + {tr.deckConfigAdditionalNewCardsToSimulate()} @@ -554,7 +554,7 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html disabled={computing} on:click={() => simulateFsrs()} > - {"Simulate"} + {tr.deckConfigSimulate()}
{simulateProgressString}
- +