Anki/ts/graphs/SeparateInactiveCheckbox.svelte

13 lines
362 B
Svelte

<script lang="typescript">
import type { I18n } from "anki/i18n";
import { cardCountsSeparateInactive } from "./preferences";
export let i18n: I18n;
const label = i18n.tr(i18n.TR.STATISTICS_COUNTS_SEPARATE_SUSPENDED_BURIED_CARDS);
</script>
<label>
<input type="checkbox" bind:checked={$cardCountsSeparateInactive} />
{label}
</label>