Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
split deckConfigHealthCheckTooltip
  • Loading branch information
Luc-Mcgrady committed Jun 12, 2025
commit bfbbf4bb71fd51d0eab0afc912f4c4e41a09b6fd
6 changes: 2 additions & 4 deletions ftl/core/deck-config.ftl
Original file line number Diff line number Diff line change
Expand Up @@ -560,10 +560,8 @@ deck-config-compute-optimal-retention-tooltip =
if it significantly differs from 0.9, it's a sign that the time you've allocated each day is either too low
or too high for the amount of cards you're trying to learn. This number can be useful as a reference, but it
is not recommended to copy it into the desired retention field.
deck-config-health-check-tooltip =
This will show a warning if FSRS struggles to adapt to your memory.

Health check is performed only when using Optimize Current Preset.
deck-config-health-check-tooltip1 = This will show a warning if FSRS struggles to adapt to your memory.
deck-config-health-check-tooltip2 = Health check is performed only when using Optimize Current Preset.

deck-config-compute-optimal-retention = Compute minimum recommended retention
deck-config-predicted-optimal-retention = Minimum recommended retention: { $num }
Expand Down
5 changes: 4 additions & 1 deletion ts/routes/deck-options/FsrsOptionsOuter.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,10 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
},
healthCheck: {
title: tr.deckConfigHealthCheck(),
help: tr.deckConfigHealthCheckTooltip(),
help:
tr.deckConfigHealthCheckTooltip1() +
"\n\n" +
tr.deckConfigHealthCheckTooltip2(),
sched: HelpItemScheduler.FSRS,
},
};
Expand Down