2018-10-25 06:52:03 +00:00
|
|
|
import i18n from 'i18next';
|
|
|
|
import { reactI18nextModule } from 'react-i18next';
|
2018-11-06 02:51:00 +00:00
|
|
|
import { initReactI18n } from 'react-i18next/hooks';
|
2018-10-25 06:52:03 +00:00
|
|
|
import langDetect from 'i18next-browser-languagedetector';
|
2018-11-16 09:45:41 +00:00
|
|
|
|
|
|
|
import vi from './__locales/vi.json';
|
|
|
|
import en from './__locales/en.json';
|
2018-11-19 16:23:57 +00:00
|
|
|
import ru from './__locales/ru.json';
|
2018-11-26 12:00:56 +00:00
|
|
|
import es from './__locales/es.json';
|
|
|
|
import fr from './__locales/fr.json';
|
|
|
|
import ja from './__locales/ja.json';
|
|
|
|
import sv from './__locales/sv.json';
|
|
|
|
import ptBR from './__locales/pt-br.json';
|
2019-01-03 09:55:15 +00:00
|
|
|
import zhTW from './__locales/zh-tw.json';
|
2019-03-07 09:38:17 +00:00
|
|
|
import bg from './__locales/bg.json';
|
2019-03-12 08:02:19 +00:00
|
|
|
import zhCN from './__locales/zh-cn.json';
|
2019-10-03 15:41:27 +00:00
|
|
|
import cs from './__locales/cs.json';
|
|
|
|
import da from './__locales/da.json';
|
|
|
|
import de from './__locales/de.json';
|
|
|
|
import id from './__locales/id.json';
|
|
|
|
import it from './__locales/it.json';
|
|
|
|
import ko from './__locales/ko.json';
|
|
|
|
import nl from './__locales/nl.json';
|
|
|
|
import pl from './__locales/pl.json';
|
|
|
|
import ptPT from './__locales/pt-pt.json';
|
|
|
|
import sk from './__locales/sk.json';
|
|
|
|
import sl from './__locales/sl.json';
|
|
|
|
import tr from './__locales/tr.json';
|
2018-11-26 12:00:56 +00:00
|
|
|
|
|
|
|
const resources = {
|
|
|
|
en: {
|
|
|
|
translation: en,
|
|
|
|
},
|
|
|
|
vi: {
|
|
|
|
translation: vi,
|
|
|
|
},
|
|
|
|
ru: {
|
|
|
|
translation: ru,
|
|
|
|
},
|
|
|
|
es: {
|
|
|
|
translation: es,
|
|
|
|
},
|
|
|
|
fr: {
|
|
|
|
translation: fr,
|
|
|
|
},
|
|
|
|
ja: {
|
|
|
|
translation: ja,
|
|
|
|
},
|
|
|
|
sv: {
|
|
|
|
translation: sv,
|
|
|
|
},
|
|
|
|
'pt-BR': {
|
|
|
|
translation: ptBR,
|
|
|
|
},
|
2019-01-03 09:55:15 +00:00
|
|
|
'zh-TW': {
|
|
|
|
translation: zhTW,
|
|
|
|
},
|
2019-03-07 09:38:17 +00:00
|
|
|
bg: {
|
|
|
|
translation: bg,
|
|
|
|
},
|
2019-03-12 08:02:19 +00:00
|
|
|
'zh-CN': {
|
|
|
|
translation: zhCN,
|
|
|
|
},
|
2019-10-03 15:41:27 +00:00
|
|
|
cs: {
|
|
|
|
translation: cs,
|
|
|
|
},
|
|
|
|
da: {
|
|
|
|
translation: da,
|
|
|
|
},
|
|
|
|
de: {
|
|
|
|
translation: de,
|
|
|
|
},
|
|
|
|
id: {
|
|
|
|
translation: id,
|
|
|
|
},
|
|
|
|
it: {
|
|
|
|
translation: it,
|
|
|
|
},
|
|
|
|
ko: {
|
|
|
|
translation: ko,
|
|
|
|
},
|
|
|
|
nl: {
|
|
|
|
translation: nl,
|
|
|
|
},
|
|
|
|
pl: {
|
|
|
|
translation: pl,
|
|
|
|
},
|
|
|
|
'pt-PT': {
|
|
|
|
translation: ptPT,
|
|
|
|
},
|
|
|
|
sk: {
|
|
|
|
translation: sk,
|
|
|
|
},
|
|
|
|
sl: {
|
|
|
|
translation: sl,
|
|
|
|
},
|
|
|
|
tr: {
|
|
|
|
translation: tr,
|
|
|
|
},
|
2018-11-26 12:00:56 +00:00
|
|
|
};
|
2018-11-09 06:51:28 +00:00
|
|
|
|
2018-10-25 06:52:03 +00:00
|
|
|
i18n
|
|
|
|
.use(langDetect)
|
2018-11-06 02:51:00 +00:00
|
|
|
.use(initReactI18n)
|
2018-10-25 06:52:03 +00:00
|
|
|
.use(reactI18nextModule) // passes i18n down to react-i18next
|
|
|
|
.init({
|
2018-11-26 12:00:56 +00:00
|
|
|
resources,
|
2018-10-25 06:52:03 +00:00
|
|
|
fallbackLng: 'en',
|
|
|
|
keySeparator: false, // we use content as keys
|
2018-10-25 16:02:04 +00:00
|
|
|
nsSeparator: false, // Fix character in content
|
2019-07-18 15:35:23 +00:00
|
|
|
returnEmptyString: false, // count empty value as invalid
|
2018-10-25 06:52:03 +00:00
|
|
|
interpolation: {
|
|
|
|
escapeValue: false, // not needed for react!!
|
|
|
|
},
|
|
|
|
react: {
|
|
|
|
wait: true,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
export default i18n;
|