mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 22:12:21 -04:00

* cards will still be mostly counted by ctype rather than queue * if the user wants to include inactive cards buried and suspended will be first filtered out, before the rest is counted by ctype
14 lines
361 B
Svelte
14 lines
361 B
Svelte
<script lang="typescript">
|
|
import type { I18n } from "anki/i18n";
|
|
|
|
export let i18n: I18n;
|
|
export let separateInactive: bool = false;
|
|
|
|
const label = "Separate suspended/buried cards";
|
|
const all = i18n.tr(i18n.TR.STATISTICS_RANGE_ALL_TIME);
|
|
</script>
|
|
|
|
<label>
|
|
<input type="checkbox" bind:checked={separateInactive} />
|
|
{label}
|
|
</label>
|