mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 14:02:21 -04:00
Compare commits
2 commits
3d038506ac
...
bdddc52a72
Author | SHA1 | Date | |
---|---|---|---|
![]() |
bdddc52a72 | ||
![]() |
0b2d70a522 |
4 changed files with 10 additions and 8 deletions
|
@ -22,7 +22,8 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|||
import { type HelpItem, HelpItemScheduler } from "./types";
|
||||
|
||||
export let title: string;
|
||||
export let url: string | undefined;
|
||||
export let url: string;
|
||||
export let linkLabel: string | undefined = undefined;
|
||||
export let startIndex = 0;
|
||||
export let helpSections: HelpItem[];
|
||||
export let fsrs = false;
|
||||
|
@ -106,11 +107,7 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|||
<div class="chapter-redirect">
|
||||
{@html renderMarkdown(
|
||||
tr.helpForMoreInfo({
|
||||
link: `<a href="${url}" title="${tr.helpOpenManualChapter(
|
||||
{
|
||||
name: title,
|
||||
},
|
||||
)}">${title}</a>`,
|
||||
link: `<a href="${url}" title="${tr.helpOpenManualChapter({ name: linkLabel ?? title })}">${linkLabel ?? title}</a>`,
|
||||
}),
|
||||
)}
|
||||
</div>
|
||||
|
|
|
@ -42,7 +42,9 @@
|
|||
<div class="chapter-redirect">
|
||||
{@html renderMarkdown(
|
||||
tr.helpForMoreInfo({
|
||||
link: `<a href="${item.url}" title="${tr.helpOpenManualChapter({ name: item.title })}">${item.title}</a>`,
|
||||
link: `<a href="${item.url}" title="${tr.helpOpenManualChapter({
|
||||
name: item.title,
|
||||
})}">${item.title}</a>`,
|
||||
}),
|
||||
)}
|
||||
</div>
|
||||
|
|
|
@ -28,6 +28,7 @@ export const HelpPage = {
|
|||
dailyLimits: "https://docs.ankiweb.net/deck-options.html#daily-limits",
|
||||
audio: "https://docs.ankiweb.net/deck-options.html#audio",
|
||||
fsrs: "http://docs.ankiweb.net/deck-options.html#fsrs",
|
||||
desiredRetention: "http://docs.ankiweb.net/deck-options.html#desired-retention",
|
||||
},
|
||||
Leeches: {
|
||||
leeches: "https://docs.ankiweb.net/leeches.html#leeches",
|
||||
|
|
|
@ -5,6 +5,7 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|||
<script lang="ts">
|
||||
import type { GraphsResponse } from "@generated/anki/stats_pb";
|
||||
import * as tr from "@generated/ftl";
|
||||
import { HelpPage } from "@tslib/help-page";
|
||||
import HelpModal from "$lib/components/HelpModal.svelte";
|
||||
import type Carousel from "bootstrap/js/dist/carousel";
|
||||
import type Modal from "bootstrap/js/dist/modal";
|
||||
|
@ -71,7 +72,8 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|||
>
|
||||
<HelpModal
|
||||
title={tr.statisticsTrueRetentionTitle()}
|
||||
url=""
|
||||
url={HelpPage.DeckOptions.desiredRetention}
|
||||
linkLabel="Desired retention"
|
||||
{helpSections}
|
||||
on:mount={(e) => {
|
||||
modal = e.detail.modal;
|
||||
|
|
Loading…
Reference in a new issue