diff --git a/ftl/core/deck-config.ftl b/ftl/core/deck-config.ftl index 4a90216f4..ca34c4b1e 100644 --- a/ftl/core/deck-config.ftl +++ b/ftl/core/deck-config.ftl @@ -370,9 +370,6 @@ deck-config-historical-retention = Historical retention deck-config-smaller-is-better = Smaller numbers indicate a better fit to your review history. deck-config-steps-too-large-for-fsrs = When FSRS is enabled, steps of 1 day or more are not recommended. deck-config-get-params = Get Params -deck-config-fsrs-on-all-clients = - Please ensure all of your Anki clients are Anki(Mobile) 23.10+ or AnkiDroid 2.17+. FSRS will - not work correctly if one of your clients is older. deck-config-predicted-minimum-recommended-retention = Minimum recommended retention: { $num } deck-config-complete = { $num }% complete. deck-config-iterations = Iteration: { $count }... @@ -523,3 +520,6 @@ deck-config-compute-optimal-retention-tooltip3 = lead to a higher workload, because of the high forgetting rate. deck-config-seconds-to-show-question-tooltip-2 = When auto advance is activated, the number of seconds to wait before revealing the answer. Set to 0 to disable. deck-config-invalid-weights = Parameters must be either left blank to use the defaults, or must be 17 comma-separated numbers. +deck-config-fsrs-on-all-clients = + Please ensure all of your Anki clients are Anki(Mobile) 23.10+ or AnkiDroid 2.17+. FSRS will + not work correctly if one of your clients is older. diff --git a/ts/routes/deck-options/FsrsOptionsOuter.svelte b/ts/routes/deck-options/FsrsOptionsOuter.svelte index 1ade4d50d..f21d7ff3c 100644 --- a/ts/routes/deck-options/FsrsOptionsOuter.svelte +++ b/ts/routes/deck-options/FsrsOptionsOuter.svelte @@ -19,7 +19,6 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html import FsrsOptions from "./FsrsOptions.svelte"; import GlobalLabel from "./GlobalLabel.svelte"; import type { DeckOptionsState } from "./lib"; - import Warning from "./Warning.svelte"; export let state: DeckOptionsState; export let api: Record; @@ -65,8 +64,6 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html modal.show(); carousel.to(index); } - - $: fsrsClientWarning = $fsrs ? tr.deckConfigFsrsOnAllClients() : ""; @@ -93,8 +90,6 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html - - {#if $fsrs}