2021-01-05 16:13:06 +01:00
|
|
|
<script lang="typescript">
|
|
|
|
import type { I18n } from "anki/i18n";
|
|
|
|
|
|
|
|
export let i18n: I18n;
|
2021-01-06 11:53:58 +01:00
|
|
|
export let separateInactive: boolean = true;
|
2021-01-05 16:13:06 +01:00
|
|
|
|
2021-01-05 19:13:57 +01:00
|
|
|
const label = i18n.tr(i18n.TR.STATISTICS_COUNTS_SEPARATE_SUSPENDED_BURIED_CARDS);
|
2021-01-05 16:13:06 +01:00
|
|
|
</script>
|
|
|
|
|
2021-01-05 17:15:47 +01:00
|
|
|
<label> <input type="checkbox" bind:checked={separateInactive} /> {label} </label>
|