mirror of
https://github.com/ankitects/anki.git
synced 2025-09-20 06:52:21 -04:00
13 lines
362 B
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>
|