add to more sections

This commit is contained in:
Luc Mcgrady 2025-07-02 16:11:36 +01:00
parent 4472998d4d
commit f58e4af792
No known key found for this signature in database
GPG key ID: 4F3D7A0B17CC3D9C
4 changed files with 8 additions and 1 deletions

View file

@ -25,7 +25,7 @@
{#if item.help}
{#if item.global}
<div class="icon">
<Icon icon={mdiEarth} />&MediumSpace;
<Icon icon={mdiEarth} />&ThickSpace;
</div>
{/if}
{@html renderMarkdown(item.help)}

View file

@ -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);

View file

@ -141,6 +141,7 @@
title: tr.deckConfigApplyAllParentLimits(),
help: applyAllParentLimitsHelp,
url: HelpPage.DeckOptions.newCardsday,
global: true,
},
};
const helpSections: HelpItem[] = Object.values(settings);

View file

@ -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);