markjaquith / clerk-sveltekit

Clerk adapter for SvelteKit
Other
146 stars 21 forks source link

Support for localization? #65

Open nelsonvassalo opened 3 months ago

nelsonvassalo commented 3 months ago

Any idea on how we can work with the official localization package and Sveltekit?

Azeo42 commented 3 months ago

you can use it already like this in your hooks.client.ts/js:


import {deDE} from "@clerk/localizations"

initializeClerkClient(PUBLIC_CLERK_PUBLISHABLE_KEY, {
    localization: deDE,
    ...,
})