mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 22:12:21 -04:00
Remove FSRS client warning
https://forums.ankiweb.net/t/anki-24-10-beta/49989/290
This commit is contained in:
parent
1fb4430913
commit
8d9251e7e5
2 changed files with 3 additions and 8 deletions
|
@ -370,9 +370,6 @@ deck-config-historical-retention = Historical retention
|
||||||
deck-config-smaller-is-better = Smaller numbers indicate a better fit to your review history.
|
deck-config-smaller-is-better = Smaller numbers indicate a better fit to your review history.
|
||||||
deck-config-steps-too-large-for-fsrs = When FSRS is enabled, steps of 1 day or more are not recommended.
|
deck-config-steps-too-large-for-fsrs = When FSRS is enabled, steps of 1 day or more are not recommended.
|
||||||
deck-config-get-params = Get Params
|
deck-config-get-params = Get Params
|
||||||
deck-config-fsrs-on-all-clients =
|
|
||||||
Please ensure all of your Anki clients are Anki(Mobile) 23.10+ or AnkiDroid 2.17+. FSRS will
|
|
||||||
not work correctly if one of your clients is older.
|
|
||||||
deck-config-predicted-minimum-recommended-retention = Minimum recommended retention: { $num }
|
deck-config-predicted-minimum-recommended-retention = Minimum recommended retention: { $num }
|
||||||
deck-config-complete = { $num }% complete.
|
deck-config-complete = { $num }% complete.
|
||||||
deck-config-iterations = Iteration: { $count }...
|
deck-config-iterations = Iteration: { $count }...
|
||||||
|
@ -523,3 +520,6 @@ deck-config-compute-optimal-retention-tooltip3 =
|
||||||
lead to a higher workload, because of the high forgetting rate.
|
lead to a higher workload, because of the high forgetting rate.
|
||||||
deck-config-seconds-to-show-question-tooltip-2 = When auto advance is activated, the number of seconds to wait before revealing the answer. Set to 0 to disable.
|
deck-config-seconds-to-show-question-tooltip-2 = When auto advance is activated, the number of seconds to wait before revealing the answer. Set to 0 to disable.
|
||||||
deck-config-invalid-weights = Parameters must be either left blank to use the defaults, or must be 17 comma-separated numbers.
|
deck-config-invalid-weights = Parameters must be either left blank to use the defaults, or must be 17 comma-separated numbers.
|
||||||
|
deck-config-fsrs-on-all-clients =
|
||||||
|
Please ensure all of your Anki clients are Anki(Mobile) 23.10+ or AnkiDroid 2.17+. FSRS will
|
||||||
|
not work correctly if one of your clients is older.
|
||||||
|
|
|
@ -19,7 +19,6 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
||||||
import FsrsOptions from "./FsrsOptions.svelte";
|
import FsrsOptions from "./FsrsOptions.svelte";
|
||||||
import GlobalLabel from "./GlobalLabel.svelte";
|
import GlobalLabel from "./GlobalLabel.svelte";
|
||||||
import type { DeckOptionsState } from "./lib";
|
import type { DeckOptionsState } from "./lib";
|
||||||
import Warning from "./Warning.svelte";
|
|
||||||
|
|
||||||
export let state: DeckOptionsState;
|
export let state: DeckOptionsState;
|
||||||
export let api: Record<string, never>;
|
export let api: Record<string, never>;
|
||||||
|
@ -65,8 +64,6 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
||||||
modal.show();
|
modal.show();
|
||||||
carousel.to(index);
|
carousel.to(index);
|
||||||
}
|
}
|
||||||
|
|
||||||
$: fsrsClientWarning = $fsrs ? tr.deckConfigFsrsOnAllClients() : "";
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<TitledContainer title={"FSRS"}>
|
<TitledContainer title={"FSRS"}>
|
||||||
|
@ -93,8 +90,6 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
||||||
</SwitchRow>
|
</SwitchRow>
|
||||||
</Item>
|
</Item>
|
||||||
|
|
||||||
<Warning warning={fsrsClientWarning} />
|
|
||||||
|
|
||||||
{#if $fsrs}
|
{#if $fsrs}
|
||||||
<FsrsOptions
|
<FsrsOptions
|
||||||
{state}
|
{state}
|
||||||
|
|
Loading…
Reference in a new issue