mirror of
https://github.com/ankitects/anki.git
synced 2025-09-24 16:56:36 -04:00
Warn users about rescheduling
This commit is contained in:
parent
2781d47d21
commit
9a027a8c48
2 changed files with 8 additions and 1 deletions
|
@ -365,7 +365,9 @@ deck-config-reschedule-cards-on-change-tooltip =
|
||||||
This option controls whether the due dates of cards will be changed when you enable FSRS, or change
|
This option controls whether the due dates of cards will be changed when you enable FSRS, or change
|
||||||
the weights. The default is not to reschedule cards: future reviews will use the new scheduling, but
|
the weights. The default is not to reschedule cards: future reviews will use the new scheduling, but
|
||||||
there will be no immediate change to your workload. If rescheduling is enabled, the due dates of cards
|
there will be no immediate change to your workload. If rescheduling is enabled, the due dates of cards
|
||||||
will be changed. Depending on your desired retention, this can result in a large number of cards becoming
|
will be changed.
|
||||||
|
deck-config-reschedule-cards-warning =
|
||||||
|
Depending on your desired retention, this can result in a large number of cards becoming
|
||||||
due, so is not recommended when first switching from SM2.
|
due, so is not recommended when first switching from SM2.
|
||||||
deck-config-compute-optimal-weights-tooltip =
|
deck-config-compute-optimal-weights-tooltip =
|
||||||
Once you've done 1000+ reviews in Anki, you can use the Optimize button to analyze your review history,
|
Once you've done 1000+ reviews in Anki, you can use the Optimize button to analyze your review history,
|
||||||
|
|
|
@ -22,6 +22,7 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
||||||
import type { DeckOptionsState } from "./lib";
|
import type { DeckOptionsState } from "./lib";
|
||||||
import SpinBoxFloatRow from "./SpinBoxFloatRow.svelte";
|
import SpinBoxFloatRow from "./SpinBoxFloatRow.svelte";
|
||||||
import SpinBoxRow from "./SpinBoxRow.svelte";
|
import SpinBoxRow from "./SpinBoxRow.svelte";
|
||||||
|
import Warning from "./Warning.svelte";
|
||||||
import WeightsInputRow from "./WeightsInputRow.svelte";
|
import WeightsInputRow from "./WeightsInputRow.svelte";
|
||||||
|
|
||||||
export let state: DeckOptionsState;
|
export let state: DeckOptionsState;
|
||||||
|
@ -237,6 +238,10 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
||||||
{tr.deckConfigRescheduleCardsOnChange()}
|
{tr.deckConfigRescheduleCardsOnChange()}
|
||||||
</SettingTitle>
|
</SettingTitle>
|
||||||
</SwitchRow>
|
</SwitchRow>
|
||||||
|
|
||||||
|
{#if $config.rescheduleFsrsCards}
|
||||||
|
<Warning warning={tr.deckConfigRescheduleCardsWarning()} />
|
||||||
|
{/if}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="m-2">
|
<div class="m-2">
|
||||||
|
|
Loading…
Reference in a new issue