diff --git a/ftl/core/deck-config.ftl b/ftl/core/deck-config.ftl index 3bf817754..a4a6e3405 100644 --- a/ftl/core/deck-config.ftl +++ b/ftl/core/deck-config.ftl @@ -338,6 +338,7 @@ 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-set-optimal-retention = Set desired retention to { $num } +deck-config-complete = { $num }% complete. ## NO NEED TO TRANSLATE. This text is no longer used by Anki, and will be removed in the future. diff --git a/ts/deck-options/FsrsOptions.svelte b/ts/deck-options/FsrsOptions.svelte index 610d483b3..a39ae0d8f 100644 --- a/ts/deck-options/FsrsOptions.svelte +++ b/ts/deck-options/FsrsOptions.svelte @@ -182,7 +182,7 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html return ""; } const pct = ((val.current / val.total) * 100).toFixed(0); - return `${pct}%`; + return tr.deckConfigComplete({ num: pct }); } function stringForSetOptimalRetention(retention: number): String {