mirror of
https://github.com/misode/misode.github.io.git
synced 2026-04-24 07:37:10 +00:00
13 lines
306 B
JavaScript
13 lines
306 B
JavaScript
i18next
|
|
.use(i18nextBrowserLanguageDetector)
|
|
.use(i18nextXHRBackend)
|
|
.init({
|
|
backend: { loadPath: 'locales/{{lng}}.json' },
|
|
whitelist: ['en'],
|
|
fallbackLng: 'en'
|
|
})
|
|
.then(() => {
|
|
jqueryI18next.init(i18next, $, { parseDefaultValueFromContent: false })
|
|
$('html').localize()
|
|
})
|