mirror of
https://github.com/ankitects/anki.git
synced 2026-01-13 22:13:58 -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.help}
|
||||||
{#if item.global}
|
{#if item.global}
|
||||||
<div class="icon">
|
<div class="icon">
|
||||||
<Icon icon={mdiEarth} /> 
|
<Icon icon={mdiEarth} />  
|
||||||
</div>
|
</div>
|
||||||
{/if}
|
{/if}
|
||||||
{@html renderMarkdown(item.help)}
|
{@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(),
|
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);
|
||||||
|
|
|
||||||
|
|
@ -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);
|
||||||
|
|
|
||||||
|
|
@ -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);
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue