diff --git a/ftl/core/statistics.ftl b/ftl/core/statistics.ftl index bff394bff..0464e0f0b 100644 --- a/ftl/core/statistics.ftl +++ b/ftl/core/statistics.ftl @@ -114,6 +114,7 @@ statistics-counts-separate-suspended-buried-cards = Separate suspended/buried ca statistics-true-retention-title = True Retention statistics-true-retention-subtitle = Pass rate of cards with an interval ≥ 1 day. +statistics-true-retention-tooltip = If you are using FSRS, your true retention is expected to be close to your desired retention. Please keep in mind that data for a single day is noisy, so it's better to look at monthly data. statistics-true-retention-range = Range statistics-true-retention-pass = Pass statistics-true-retention-fail = Fail diff --git a/ts/lib/components/TitledContainer.svelte b/ts/lib/components/TitledContainer.svelte index fcfec729b..70e4a078c 100644 --- a/ts/lib/components/TitledContainer.svelte +++ b/ts/lib/components/TitledContainer.svelte @@ -12,6 +12,7 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html export { className as class }; export let title: string; + export let onTitleClick: ((_e: MouseEvent | KeyboardEvent) => void) | null = null;