anki/ts/graphs/SeparateInactiveCheckbox.svelte

12 lines
356 B
Svelte
Raw Normal View History

<script lang="typescript">
import type { I18n } from "anki/i18n";
export let i18n: I18n;
2021-01-05 17:15:47 +01:00
export let separateInactive: boolean = false;
const label = "Separate suspended/buried cards";
const all = i18n.tr(i18n.TR.STATISTICS_RANGE_ALL_TIME);
</script>
2021-01-05 17:15:47 +01:00
<label> <input type="checkbox" bind:checked={separateInactive} /> {label} </label>