diff options
Diffstat (limited to 'src/lib/List/Anime/CleanAnimeList.svelte')
| -rw-r--r-- | src/lib/List/Anime/CleanAnimeList.svelte | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/lib/List/Anime/CleanAnimeList.svelte b/src/lib/List/Anime/CleanAnimeList.svelte index 42f4d933..5cb6cb1e 100644 --- a/src/lib/List/Anime/CleanAnimeList.svelte +++ b/src/lib/List/Anime/CleanAnimeList.svelte @@ -1,5 +1,6 @@ <script lang="ts"> import Spacer from "$lib/Layout/Spacer.svelte"; +import locale from "$stores/locale"; import settings from "$stores/settings"; import type { Media } from "$lib/Data/AniList/media"; @@ -250,7 +251,7 @@ const increment = (anime: Media, progress: number) => { <button class="small-button" onclick={() => (showRoulette = true)} - title="Pick a random anime to watch" + title={$locale().lists.actions?.pickRandomAnime} > Roulette </button> @@ -258,12 +259,13 @@ const increment = (anime: Media, progress: number) => { </ListTitle> {#if media.length === 0} - No anime to display. <button onclick={() => (animeLists = cleanCache(user, $identity))}> - Force refresh + {$locale().lists.empty?.anime} + <button onclick={() => (animeLists = cleanCache(user, $identity))}> + {$locale().lists.actions?.forceRefresh} </button> {:else if $settings.displayMediaListFilter && !disableFilter && hasDistinguishingList} <select value={selectedList} onchange={updateSelectedList}> - <option value="All">All</option> + <option value="All">{$locale().lists.actions?.all}</option> {#each lists as list} <option value={list}>{list}</option> |