add languages

This commit is contained in:
vcoppe
2024-08-05 14:44:40 +02:00
parent c64e29c8bc
commit 1f92e377ad
3 changed files with 28 additions and 18 deletions

View File

@@ -0,0 +1,23 @@
<script lang="ts">
import { locale, _ } from 'svelte-i18n';
import { page } from '$app/stores';
import { languages } from '$lib/languages';
import { browser } from '$app/environment';
import { goto } from '$app/navigation';
import { base } from '$app/paths';
$: if ($page.params.language === '' && $locale !== 'en') {
locale.set('en');
} else if ($page.params.language) {
let lang = $page.params.language.replace('/', '');
if ($locale !== lang) {
if (languages.hasOwnProperty(lang)) {
locale.set(lang);
} else if (browser) {
goto(`${base}/404`);
}
}
}
</script>
<slot />