diff options
Diffstat (limited to 'src/lib/Tools/SequelCatcher/Tool.svelte')
| -rw-r--r-- | src/lib/Tools/SequelCatcher/Tool.svelte | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/src/lib/Tools/SequelCatcher/Tool.svelte b/src/lib/Tools/SequelCatcher/Tool.svelte index 727a3a6c..f75b1f78 100644 --- a/src/lib/Tools/SequelCatcher/Tool.svelte +++ b/src/lib/Tools/SequelCatcher/Tool.svelte @@ -12,6 +12,7 @@ import lastPruneTimes from "$stores/lastPruneTimes"; import Message from "$lib/Loading/Message.svelte"; import Skeleton from "$lib/Loading/Skeleton.svelte"; import Username from "$lib/Layout/Username.svelte"; +import locale from "$stores/locale"; export let user: AniListAuthorisation; @@ -69,13 +70,19 @@ onMount(async () => { /> {/if} {:catch} - <Message message="" loader="ripple" slot withReload fullscreen>Error fetching media.</Message> + <Message message="" loader="ripple" slot withReload fullscreen + >{$locale().tools.wrapped?.errorFetchingMedia ?? 'Error fetching media.'}</Message + > {/await} <Spacer /> <blockquote style="margin: 0 0 0 1.5rem;"> - Thanks to <Username username="sevengirl" /> and <Username username="esthereae" /> for the idea! + {$locale().tools.sequelCatcher?.credit?.split('@sevengirl')[0]}<Username + username="sevengirl" + />{$locale().tools.sequelCatcher?.credit?.split('@sevengirl')[1]?.split('@esthereae')[0]}<Username + username="esthereae" + />{$locale().tools.sequelCatcher?.credit?.split('@esthereae')[1]} </blockquote> </div> {/if} |