mirror of
https://github.com/uetchy/namae.git
synced 2025-07-02 06:20:02 +09:00
31 lines
774 B
TypeScript
31 lines
774 B
TypeScript
import i18n from 'i18next';
|
|
import Backend from 'i18next-chained-backend';
|
|
import LocalStorageBackend from 'i18next-localstorage-backend';
|
|
import XHR from 'i18next-xhr-backend';
|
|
import LanguageDetector from 'i18next-browser-languagedetector';
|
|
import {initReactI18next} from 'react-i18next';
|
|
|
|
const TRANSLATION_VERSION = '1.12';
|
|
|
|
i18n
|
|
.use(Backend)
|
|
.use(LanguageDetector)
|
|
.use(initReactI18next)
|
|
.init({
|
|
backend: {
|
|
backends: [LocalStorageBackend, XHR],
|
|
backendOptions: [
|
|
{
|
|
versions: {en: TRANSLATION_VERSION, ja: TRANSLATION_VERSION},
|
|
},
|
|
],
|
|
},
|
|
fallbackLng: 'en',
|
|
debug: false,
|
|
interpolation: {
|
|
escapeValue: false, // not needed for react as it escapes by default
|
|
},
|
|
});
|
|
|
|
export default i18n;
|