diff options
| -rw-r--r-- | src/lib/Settings/Verbiage.svelte | 30 | ||||
| -rw-r--r-- | src/routes/settings/+page.svelte | 5 |
2 files changed, 35 insertions, 0 deletions
diff --git a/src/lib/Settings/Verbiage.svelte b/src/lib/Settings/Verbiage.svelte new file mode 100644 index 00000000..85a21f82 --- /dev/null +++ b/src/lib/Settings/Verbiage.svelte @@ -0,0 +1,30 @@ +<details open={false}> + <summary>Verbiage</summary> + + <ul> + <li> + <a href="/">Home</a>, Upcoming Episodes: Anime which you have seen all episodes of thus far, + and have a scheduled next episode(s) release date + </li> + <li> + <a href="/">Home</a>, Upcoming Episodes (Not Yet Released): Anime which have not yet aired + their first episode, and have a scheduled next episode(s) release date + </li> + <li> + <a href="/">Home</a>, Anime: Anime which you have not seen all episodes of thus far, and have + a scheduled next episode release date + </li> + <li> + <a href="/">Home</a>, Manga: Manga which you have not read all chapters of thus far, and have + an available next chapter(s) + </li> + <li> + <a href="/completed">Completed</a>, Anime: Anime which you have not seen all episodes of thus + far, and have concluded airing + </li> + <li> + <a href="/completed">Completed</a>, Manga: Manga which you have not read all chapters of thus + far, and have concluded publishing + </li> + </ul> +</details> diff --git a/src/routes/settings/+page.svelte b/src/routes/settings/+page.svelte index 4a40b318..6aa1c16d 100644 --- a/src/routes/settings/+page.svelte +++ b/src/routes/settings/+page.svelte @@ -7,6 +7,7 @@ import settings from '../../stores/settings'; import SettingCheckboxToggle from '$lib/Settings/SettingCheckboxToggle.svelte'; import SettingHint from '$lib/Settings/SettingHint.svelte'; + import Verbiage from '$lib/Settings/Verbiage.svelte'; import { pruneAllManga } from '$lib/Media/manga'; export let data; @@ -209,4 +210,8 @@ updates </SettingHint> </details> + + <p /> + + <Verbiage /> {/if} |