diff options
| author | Fuwn <[email protected]> | 2023-12-04 12:45:58 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2023-12-04 12:46:56 -0800 |
| commit | 5322359b376d1e6f132b7220ac0b28ef14c33195 (patch) | |
| tree | 300886b347fcaffd0d1bb5f34e6b7377c9f392b2 /src/lib/Settings | |
| parent | refactor(routes): simplify shortcuts (diff) | |
| download | due.moe-5322359b376d1e6f132b7220ac0b28ef14c33195.tar.xz due.moe-5322359b376d1e6f132b7220ac0b28ef14c33195.zip | |
feat(settings): verbiage
Diffstat (limited to 'src/lib/Settings')
| -rw-r--r-- | src/lib/Settings/Verbiage.svelte | 30 |
1 files changed, 30 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> |