diff --git a/ftl/core/statistics.ftl b/ftl/core/statistics.ftl index 685bcabe6..e03a332c2 100644 --- a/ftl/core/statistics.ftl +++ b/ftl/core/statistics.ftl @@ -87,6 +87,7 @@ statistics-counts-early-cards = Early statistics-counts-learning-cards = Learning statistics-counts-relearning-cards = Relearning statistics-counts-title = Card Counts +statistics-counts-separate-suspended-buried-cards = Separate suspended / buried cards statistics-range-all-time = all statistics-range-1-year-history = last 12 months statistics-range-all-history = all history diff --git a/ts/graphs/SeparateInactiveCheckbox.svelte b/ts/graphs/SeparateInactiveCheckbox.svelte index 46c8378e1..58050420b 100644 --- a/ts/graphs/SeparateInactiveCheckbox.svelte +++ b/ts/graphs/SeparateInactiveCheckbox.svelte @@ -4,8 +4,7 @@ export let i18n: I18n; export let separateInactive: boolean = false; - const label = "Separate suspended/buried cards"; - const all = i18n.tr(i18n.TR.STATISTICS_RANGE_ALL_TIME); + const label = i18n.tr(i18n.TR.STATISTICS_COUNTS_SEPARATE_SUSPENDED_BURIED_CARDS);