svelte-intl-precompile
svelte-intl-precompile copied to clipboard
I18n library for Svelte.js that analyzes your keys at build time for max performance and minimal footprint
I found this piece of code ``` var $locale = writable(""); $locale.subscribe((newLocale) => { setCurrentLocale(newLocale); if (typeof window !== "undefined") { if (newLocale !== "") { document.documentElement.setAttribute("lang", newLocale); } }...
Encountered this bug when updating from Svelte `5.19.0` to `5.20.0`. The language manifest compilation appears to be failing silently, with the errors like the following as as symptom: The message...