Add label for SeparateInactiveCheckbox in ftl file

This commit is contained in:
Henrik Giesel 2021-01-05 19:13:57 +01:00
parent f5e90bb249
commit ee94c7eb93
2 changed files with 2 additions and 2 deletions

View File

@ -87,6 +87,7 @@ statistics-counts-early-cards = Early
statistics-counts-learning-cards = Learning statistics-counts-learning-cards = Learning
statistics-counts-relearning-cards = Relearning statistics-counts-relearning-cards = Relearning
statistics-counts-title = Card Counts statistics-counts-title = Card Counts
statistics-counts-separate-suspended-buried-cards = Separate suspended / buried cards
statistics-range-all-time = all statistics-range-all-time = all
statistics-range-1-year-history = last 12 months statistics-range-1-year-history = last 12 months
statistics-range-all-history = all history statistics-range-all-history = all history

View File

@ -4,8 +4,7 @@
export let i18n: I18n; export let i18n: I18n;
export let separateInactive: boolean = false; export let separateInactive: boolean = false;
const label = "Separate suspended/buried cards"; const label = i18n.tr(i18n.TR.STATISTICS_COUNTS_SEPARATE_SUSPENDED_BURIED_CARDS);
const all = i18n.tr(i18n.TR.STATISTICS_RANGE_ALL_TIME);
</script> </script>
<label> <input type="checkbox" bind:checked={separateInactive} /> {label} </label> <label> <input type="checkbox" bind:checked={separateInactive} /> {label} </label>