aboutsummaryrefslogtreecommitdiff
path: root/src/lib/Settings/Verbiage.svelte
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/Settings/Verbiage.svelte')
-rw-r--r--src/lib/Settings/Verbiage.svelte25
1 files changed, 13 insertions, 12 deletions
diff --git a/src/lib/Settings/Verbiage.svelte b/src/lib/Settings/Verbiage.svelte
index b82281ee..09caced2 100644
--- a/src/lib/Settings/Verbiage.svelte
+++ b/src/lib/Settings/Verbiage.svelte
@@ -1,5 +1,6 @@
<script>
import root from "$lib/Utility/root";
+import locale from "$stores/locale";
</script>
<details open={false}>
@@ -7,28 +8,28 @@ import root from "$lib/Utility/root";
<ul>
<li>
- <a href={root('/')}>Home</a>, Upcoming Episodes: Anime which you have seen all episodes of
- thus far, and have a scheduled next episode(s) release date
+ <a href={root('/')}>{$locale().navigation.home}</a>, {$locale().lists.upcoming.episodes.title}:
+ {$locale().settings.verbiage?.upcomingEpisodes}
</li>
<li>
- <a href={root('/')}>Home</a>, Not Yet Released: Anime which have not yet aired their first
- episode, and have a scheduled next episode(s) release date
+ <a href={root('/')}>{$locale().navigation.home}</a>, {$locale().lists.upcoming.notYetReleased
+ .title}: {$locale().settings.verbiage?.notYetReleased}
</li>
<li>
- <a href={root('/')}>Home</a>, Anime: Anime which you have not seen all episodes of thus far,
- and have a scheduled next episode release date
+ <a href={root('/')}>{$locale().navigation.home}</a>, {$locale().settings.media.anime}:
+ {$locale().settings.verbiage?.dueEpisodes}
</li>
<li>
- <a href={root('/')}>Home</a>, Manga: Manga which you have not read all chapters of thus far,
- and have an available next chapter(s)
+ <a href={root('/')}>{$locale().navigation.home}</a>, {$locale().settings.media.manga}:
+ {$locale().settings.verbiage?.dueManga}
</li>
<li>
- <a href={root('/completed')}>Completed</a>, Anime: Anime which you have not seen all episodes
- of thus far, and have concluded airing
+ <a href={root('/completed')}>{$locale().navigation.completed}</a>, {$locale().settings.media
+ .anime}: {$locale().settings.verbiage?.completedAnime}
</li>
<li>
- <a href={root('/completed')}>Completed</a>, Manga: Manga which you have not read all chapters
- of thus far, and have concluded publishing
+ <a href={root('/completed')}>{$locale().navigation.completed}</a>, {$locale().settings.media
+ .manga}: {$locale().settings.verbiage?.completedManga}
</li>
</ul>
</details>