diff options
Diffstat (limited to 'src/lib/List/Manga/CleanMangaList.svelte')
| -rw-r--r-- | src/lib/List/Manga/CleanMangaList.svelte | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/lib/List/Manga/CleanMangaList.svelte b/src/lib/List/Manga/CleanMangaList.svelte index aa996547..e14e03f0 100644 --- a/src/lib/List/Manga/CleanMangaList.svelte +++ b/src/lib/List/Manga/CleanMangaList.svelte @@ -17,6 +17,7 @@ import proxy from '$lib/Utility/proxy'; import Loading from '$lib/Utility/Loading.svelte'; import root from '$lib/Utility/root'; + import locale from '$stores/locale'; export let media: Media[]; export let cleanCache: () => void; @@ -39,7 +40,13 @@ </script> {#if authorised} - <ListTitle count={media.length} time={endTime / 1000}> + <ListTitle + count={media.length} + time={endTime / 1000} + title={due + ? $locale().lists.due.mangaAndLightNovels + : $locale().lists.completed.mangaAndLightNovels} + > <button class="small-button" title="Force a full refresh" |