mirror of
https://github.com/ankitects/anki.git
synced 2026-01-13 14:03:55 -05:00
add to more sections
This commit is contained in:
parent
4472998d4d
commit
f58e4af792
4 changed files with 8 additions and 1 deletions
|
|
@ -25,7 +25,7 @@
|
|||
{#if item.help}
|
||||
{#if item.global}
|
||||
<div class="icon">
|
||||
<Icon icon={mdiEarth} /> 
|
||||
<Icon icon={mdiEarth} />  
|
||||
</div>
|
||||
{/if}
|
||||
{@html renderMarkdown(item.help)}
|
||||
|
|
|
|||
|
|
@ -82,6 +82,7 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|||
title: tr.deckConfigCustomScheduling(),
|
||||
help: tr.deckConfigCustomSchedulingTooltip(),
|
||||
url: "https://faqs.ankiweb.net/the-2021-scheduler.html#add-ons-and-custom-scheduling",
|
||||
global: true,
|
||||
},
|
||||
};
|
||||
const helpSections: HelpItem[] = Object.values(settings);
|
||||
|
|
|
|||
|
|
@ -141,6 +141,7 @@
|
|||
title: tr.deckConfigApplyAllParentLimits(),
|
||||
help: applyAllParentLimitsHelp,
|
||||
url: HelpPage.DeckOptions.newCardsday,
|
||||
global: true,
|
||||
},
|
||||
};
|
||||
const helpSections: HelpItem[] = Object.values(settings);
|
||||
|
|
|
|||
|
|
@ -35,6 +35,7 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|||
title: "FSRS",
|
||||
help: tr.deckConfigFsrsTooltip(),
|
||||
url: HelpPage.DeckOptions.fsrs,
|
||||
global: true,
|
||||
},
|
||||
desiredRetention: {
|
||||
title: tr.deckConfigDesiredRetention(),
|
||||
|
|
@ -56,6 +57,7 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|||
title: tr.deckConfigRescheduleCardsOnChange(),
|
||||
help: tr.deckConfigRescheduleCardsOnChangeTooltip(),
|
||||
sched: HelpItemScheduler.FSRS,
|
||||
global: true,
|
||||
},
|
||||
computeOptimalRetention: {
|
||||
title: tr.deckConfigComputeOptimalRetention(),
|
||||
|
|
@ -65,10 +67,13 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|||
healthCheck: {
|
||||
title: tr.deckConfigHealthCheck(),
|
||||
help:
|
||||
tr.deckConfigAffectsEntireCollection() +
|
||||
"\n\n" +
|
||||
tr.deckConfigHealthCheckTooltip1() +
|
||||
"\n\n" +
|
||||
tr.deckConfigHealthCheckTooltip2(),
|
||||
sched: HelpItemScheduler.FSRS,
|
||||
global: true,
|
||||
},
|
||||
};
|
||||
const helpSections: HelpItem[] = Object.values(settings);
|
||||
|
|
|
|||
Loading…
Reference in a new issue