diff options
Diffstat (limited to 'src/lib/List/Manga/MangaListTemplate.svelte')
| -rw-r--r-- | src/lib/List/Manga/MangaListTemplate.svelte | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/lib/List/Manga/MangaListTemplate.svelte b/src/lib/List/Manga/MangaListTemplate.svelte index df894910..1bb53be1 100644 --- a/src/lib/List/Manga/MangaListTemplate.svelte +++ b/src/lib/List/Manga/MangaListTemplate.svelte @@ -18,6 +18,7 @@ import privilegedUser from "$lib/Utility/privilegedUser"; import identity from "$stores/identity"; import lastPruneTimes from "$stores/lastPruneTimes"; import locale from "$stores/locale"; +import { get } from "svelte/store"; import manga from "$stores/manga"; import revalidateManga from "$stores/revalidateManga"; import settings from "$stores/settings"; @@ -211,8 +212,10 @@ const cleanMedia = async ( if (refreshing) { addNotification( options({ - heading: "Manga", - description: "Re-freshing manga data ...", + heading: get(locale)().notifications?.mangaHeading ?? "Manga", + description: + get(locale)().notifications?.mangaRefreshing ?? + "Re-freshing manga data ...", }), ); } |