850043b49b
* Make enum selector generic * Refactor ImportCsvPage to support tooltips * Improve csv import defaults * Unify import pages * Improve import page styling * Fix life cycle issue with import properties * Remove size constraints to fix scrollbar styling * Add help strings and urls to csv import page * Show ErrorPage on ImportPage error * Fix escaping of import path * Unify ImportPage and ImportLogPage * Apply suggestions from code review (dae) * Fix import progress * Fix preview overflowing container * Don't include <br> in FileIoErrors (dae) e.g. 500: Failed to read '/home/dae/foo2.csv':<br>stream did not contain valid UTF-8 I thought about using {@html ...} here, but that's a potential security issue, as the filename is not something we control.
47 lines
2.7 KiB
TypeScript
47 lines
2.7 KiB
TypeScript
// Copyright: Ankitects Pty Ltd and contributors
|
|
// License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|
|
|
/** These links are checked in CI to ensure they are valid. */
|
|
export const HelpPage = {
|
|
DeckOptions: {
|
|
maximumInterval: "https://docs.ankiweb.net/deck-options.html#maximum-interval",
|
|
startingEase: "https://docs.ankiweb.net/deck-options.html#starting-ease",
|
|
easyBonus: "https://docs.ankiweb.net/deck-options.html#easy-bonus",
|
|
intervalModifier: "https://docs.ankiweb.net/deck-options.html#interval-modifier",
|
|
hardInterval: "https://docs.ankiweb.net/deck-options.html#hard-interval",
|
|
newInterval: "https://docs.ankiweb.net/deck-options.html#new-interval",
|
|
advanced: "https://docs.ankiweb.net/deck-options.html#advanced",
|
|
timer: "https://docs.ankiweb.net/deck-options.html#timer",
|
|
learningSteps: "https://docs.ankiweb.net/deck-options.html#learning-steps",
|
|
graduatingInterval: "https://docs.ankiweb.net/deck-options.html#graduating-interval",
|
|
easyInterval: "https://docs.ankiweb.net/deck-options.html#easy-interval",
|
|
insertionOrder: "https://docs.ankiweb.net/deck-options.html#insertion-order",
|
|
newCards: "https://docs.ankiweb.net/deck-options.html#new-cards",
|
|
relearningSteps: "https://docs.ankiweb.net/deck-options.html#relearning-steps",
|
|
minimumInterval: "https://docs.ankiweb.net/deck-options.html#minimum-interval",
|
|
lapses: "https://docs.ankiweb.net/deck-options.html#lapses",
|
|
displayOrder: "https://docs.ankiweb.net/deck-options.html#display-order",
|
|
maximumReviewsday: "https://docs.ankiweb.net/deck-options.html#maximum-reviewsday",
|
|
newCardsday: "https://docs.ankiweb.net/deck-options.html#new-cardsday",
|
|
dailyLimits: "https://docs.ankiweb.net/deck-options.html#daily-limits",
|
|
audio: "https://docs.ankiweb.net/deck-options.html#audio",
|
|
},
|
|
Leeches: {
|
|
leeches: "https://docs.ankiweb.net/leeches.html#leeches",
|
|
waiting: "https://docs.ankiweb.net/leeches.html#waiting",
|
|
},
|
|
Studying: {
|
|
siblingsAndBurying: "https://docs.ankiweb.net/studying.html#siblings-and-burying",
|
|
},
|
|
PackageImporting: {
|
|
root: "https://docs.ankiweb.net/importing/packaged-decks.html",
|
|
updating: "https://docs.ankiweb.net/importing/packaged-decks.html#updating",
|
|
scheduling: "https://docs.ankiweb.net/importing/packaged-decks.html#scheduling",
|
|
},
|
|
TextImporting: {
|
|
root: "https://docs.ankiweb.net/importing/text-files.html",
|
|
updating: "https://docs.ankiweb.net/importing/text-files.html#duplicates-and-updating",
|
|
html: "https://docs.ankiweb.net/importing/text-files.html#html",
|
|
},
|
|
};
|