$lang
Set the language at any time, from anywhere.
import { $langย }ย from "i18n";
setTimeout(
()=> {
console.log(`The app is currently in ${evtLang.state}`);
console.log("We switch to fr now!");
//This will trigger components to re-render.
$lang.current= "fr";
},
30_000
);import { $langย } from "i18n";
evtLang
.subscribe(lang=> console.log(`The app has just beed switched to ${lang}`));
Last updated
Was this helpful?