You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
401 B
15 lines
401 B
1 year ago
|
import { setLocale } from "./locales";
|
||
|
|
||
|
export async function loadLocale() {
|
||
|
const locale = document.querySelector('html').lang || 'en';
|
||
|
|
||
|
const localeData = await import(
|
||
|
/* webpackMode: "lazy" */
|
||
|
/* webpackChunkName: "locale/[request]" */
|
||
|
/* webpackInclude: /\.json$/ */
|
||
|
/* webpackPreload: true */
|
||
|
`mastodon/locales/${locale}.json`);
|
||
|
|
||
|
setLocale({ messages: localeData });
|
||
|
}
|