mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 14:02:21 -04:00
Add disclaimer to workload tooltip (#4131)
This commit is contained in:
parent
5c23ac5a86
commit
0739ea58f8
2 changed files with 6 additions and 1 deletions
|
@ -425,6 +425,8 @@ deck-config-desired-retention-tooltip =
|
||||||
less frequently, and you will forget more of them. Be conservative when adjusting this - higher
|
less frequently, and you will forget more of them. Be conservative when adjusting this - higher
|
||||||
values will greatly increase your workload, and lower values can be demoralizing when you forget
|
values will greatly increase your workload, and lower values can be demoralizing when you forget
|
||||||
a lot of material.
|
a lot of material.
|
||||||
|
deck-config-desired-retention-tooltip2 =
|
||||||
|
The workload values provided by the tooltip are a rough approximation. For a greater level of accuracy, use the simulator.
|
||||||
deck-config-historical-retention-tooltip =
|
deck-config-historical-retention-tooltip =
|
||||||
When some of your review history is missing, FSRS needs to fill in the gaps. By default, it will
|
When some of your review history is missing, FSRS needs to fill in the gaps. By default, it will
|
||||||
assume that when you did those old reviews, you remembered 90% of the material. If your old retention
|
assume that when you did those old reviews, you remembered 90% of the material. If your old retention
|
||||||
|
|
|
@ -38,7 +38,10 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
||||||
},
|
},
|
||||||
desiredRetention: {
|
desiredRetention: {
|
||||||
title: tr.deckConfigDesiredRetention(),
|
title: tr.deckConfigDesiredRetention(),
|
||||||
help: tr.deckConfigDesiredRetentionTooltip(),
|
help:
|
||||||
|
tr.deckConfigDesiredRetentionTooltip() +
|
||||||
|
"\n\n" +
|
||||||
|
tr.deckConfigDesiredRetentionTooltip2(),
|
||||||
sched: HelpItemScheduler.FSRS,
|
sched: HelpItemScheduler.FSRS,
|
||||||
},
|
},
|
||||||
modelParams: {
|
modelParams: {
|
||||||
|
|
Loading…
Reference in a new issue