mirror of
https://github.com/ankitects/anki.git
synced 2026-01-13 22:13:58 -05:00
anon's suggestions
This commit is contained in:
parent
09a8f21301
commit
cffab68b27
2 changed files with 17 additions and 21 deletions
|
|
@ -395,7 +395,7 @@ deck-config-weights = FSRS parameters
|
|||
deck-config-compute-optimal-weights = Optimize FSRS parameters
|
||||
deck-config-compute-minimum-recommended-retention = Minimum recommended retention
|
||||
deck-config-optimize-button = Optimize Current Preset
|
||||
deck-config-health-check = Health check (Slow)
|
||||
deck-config-health-check = Perform a health check after optimization (Slow)
|
||||
deck-config-compute-button = Compute
|
||||
deck-config-ignore-before = Ignore cards reviewed before
|
||||
deck-config-time-to-optimize = It's been a while - using the Optimize All button is recommended.
|
||||
|
|
|
|||
|
|
@ -323,6 +323,22 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|||
placeholder={defaultparamSearch}
|
||||
/>
|
||||
|
||||
<SwitchRow bind:value={$fsrsReschedule} defaultValue={false}>
|
||||
<SettingTitle on:click={() => openHelpModal("rescheduleCardsOnChange")}>
|
||||
<GlobalLabel title={tr.deckConfigRescheduleCardsOnChange()} />
|
||||
</SettingTitle>
|
||||
</SwitchRow>
|
||||
|
||||
{#if $fsrsReschedule}
|
||||
<Warning warning={tr.deckConfigRescheduleCardsWarning()} />
|
||||
{/if}
|
||||
|
||||
<SwitchRow bind:value={$config.healthCheck} defaultValue={false}>
|
||||
<SettingTitle on:click={() => openHelpModal("deckConfigHealthCheck")}>
|
||||
{tr.deckConfigHealthCheck()}
|
||||
</SettingTitle>
|
||||
</SwitchRow>
|
||||
|
||||
<button
|
||||
class="btn {computingParams ? 'btn-warning' : 'btn-primary'}"
|
||||
disabled={!computingParams && computing}
|
||||
|
|
@ -334,14 +350,6 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|||
{tr.deckConfigOptimizeButton()}
|
||||
{/if}
|
||||
</button>
|
||||
<label style="margin-left: 0.5em;">
|
||||
<input
|
||||
type="checkbox"
|
||||
bind:checked={$config.healthCheck}
|
||||
disabled={computingParams}
|
||||
/>
|
||||
{tr.deckConfigHealthCheck()}
|
||||
</label>
|
||||
{#if false}
|
||||
<!-- Can be re-enabled by some method in the future -->
|
||||
<button
|
||||
|
|
@ -373,18 +381,6 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|||
</button>
|
||||
</div>
|
||||
|
||||
<div class="m-2">
|
||||
<SwitchRow bind:value={$fsrsReschedule} defaultValue={false}>
|
||||
<SettingTitle on:click={() => openHelpModal("rescheduleCardsOnChange")}>
|
||||
<GlobalLabel title={tr.deckConfigRescheduleCardsOnChange()} />
|
||||
</SettingTitle>
|
||||
</SwitchRow>
|
||||
|
||||
{#if $fsrsReschedule}
|
||||
<Warning warning={tr.deckConfigRescheduleCardsWarning()} />
|
||||
{/if}
|
||||
</div>
|
||||
|
||||
<div class="m-2">
|
||||
<button class="btn btn-primary" on:click={() => (showSimulator = true)}>
|
||||
{tr.deckConfigFsrsSimulatorExperimental()}
|
||||
|
|
|
|||
Loading…
Reference in a new issue