From ced66c5807575cd29f6aa5632e8ad02b38c8448a Mon Sep 17 00:00:00 2001 From: ivar Date: Sun, 28 Apr 2024 22:37:30 +0200 Subject: WIP new frontend --- code/frontend/src/routes/+layout.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 code/frontend/src/routes/+layout.ts (limited to 'code/frontend/src/routes/+layout.ts') diff --git a/code/frontend/src/routes/+layout.ts b/code/frontend/src/routes/+layout.ts new file mode 100644 index 0000000..3893260 --- /dev/null +++ b/code/frontend/src/routes/+layout.ts @@ -0,0 +1,10 @@ +import type { LayoutLoad } from "./$types"; +import type { Locales } from "$i18n/i18n-types"; +import { loadLocaleAsync } from "$i18n/i18n-util.async"; +import { setLocale } from "$i18n/i18n-svelte"; + +export const load: LayoutLoad<{ locale: Locales }> = async ({ data: { locale } }) => { + await loadLocaleAsync(locale); + setLocale(locale); + return { locale }; +}; \ No newline at end of file -- cgit v1.3