fix: translation

This commit is contained in:
Tobias Klemp
2025-12-03 20:52:19 +01:00
parent 42080520bf
commit 2806575233
8 changed files with 262 additions and 11 deletions

View File

@@ -0,0 +1,7 @@
import { languageService } from '$lib/server/LanguageService'
import type { LayoutServerLoad } from './$types'
export const load: LayoutServerLoad = async () => {
const translations = await languageService.getTranslations(['de'])
return translations
}