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.help}
{#if item.global} {#if item.global}
<div class="icon"> <div class="icon">
<Icon icon={mdiEarth} />&MediumSpace; <Icon icon={mdiEarth} />&ThickSpace;
</div> </div>
{/if} {/if}
{@html renderMarkdown(item.help)} {@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(), title: tr.deckConfigCustomScheduling(),
help: tr.deckConfigCustomSchedulingTooltip(), help: tr.deckConfigCustomSchedulingTooltip(),
url: "https://faqs.ankiweb.net/the-2021-scheduler.html#add-ons-and-custom-scheduling", url: "https://faqs.ankiweb.net/the-2021-scheduler.html#add-ons-and-custom-scheduling",
global: true,
}, },
}; };
const helpSections: HelpItem[] = Object.values(settings); const helpSections: HelpItem[] = Object.values(settings);

View file

@ -141,6 +141,7 @@
title: tr.deckConfigApplyAllParentLimits(), title: tr.deckConfigApplyAllParentLimits(),
help: applyAllParentLimitsHelp, help: applyAllParentLimitsHelp,
url: HelpPage.DeckOptions.newCardsday, url: HelpPage.DeckOptions.newCardsday,
global: true,
}, },
}; };
const helpSections: HelpItem[] = Object.values(settings); 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", title: "FSRS",
help: tr.deckConfigFsrsTooltip(), help: tr.deckConfigFsrsTooltip(),
url: HelpPage.DeckOptions.fsrs, url: HelpPage.DeckOptions.fsrs,
global: true,
}, },
desiredRetention: { desiredRetention: {
title: tr.deckConfigDesiredRetention(), title: tr.deckConfigDesiredRetention(),
@ -56,6 +57,7 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
title: tr.deckConfigRescheduleCardsOnChange(), title: tr.deckConfigRescheduleCardsOnChange(),
help: tr.deckConfigRescheduleCardsOnChangeTooltip(), help: tr.deckConfigRescheduleCardsOnChangeTooltip(),
sched: HelpItemScheduler.FSRS, sched: HelpItemScheduler.FSRS,
global: true,
}, },
computeOptimalRetention: { computeOptimalRetention: {
title: tr.deckConfigComputeOptimalRetention(), title: tr.deckConfigComputeOptimalRetention(),
@ -65,10 +67,13 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
healthCheck: { healthCheck: {
title: tr.deckConfigHealthCheck(), title: tr.deckConfigHealthCheck(),
help: help:
tr.deckConfigAffectsEntireCollection() +
"\n\n" +
tr.deckConfigHealthCheckTooltip1() + tr.deckConfigHealthCheckTooltip1() +
"\n\n" + "\n\n" +
tr.deckConfigHealthCheckTooltip2(), tr.deckConfigHealthCheckTooltip2(),
sched: HelpItemScheduler.FSRS, sched: HelpItemScheduler.FSRS,
global: true,
}, },
}; };
const helpSections: HelpItem[] = Object.values(settings); const helpSections: HelpItem[] = Object.values(settings);