mirror of
https://github.com/kunkunsh/kunkun.git
synced 2025-04-25 16:09:15 +00:00

* chore: add @inlang/paraglide-sveltekit to @kksh/ui * feat: add i18n to desktop * fix: add shrink-0 class to mode-toggle button for consistent styling * feat: add i18n to settings, not working yet * feat: i18 working * feat: add i18n for about * feat: migrate all goto to use i18n.resolveRoute * feat: finish translating settings to chinese * feat: add Chinese i18n for troubleshooters * feat: add russian translation (by AI) * format: run prettier * format * chore: update .prettierignore to exclude src/lib/paraglide/**
7 lines
252 B
TypeScript
7 lines
252 B
TypeScript
// file initialized by the Paraglide-SvelteKit CLI - Feel free to edit it
|
|
import { sequence } from "@sveltejs/kit/hooks"
|
|
import { i18n } from "$lib/i18n"
|
|
|
|
// add your own hooks as part of the sequence here
|
|
export const handle = sequence(i18n.handle())
|