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-09 06:51:28 +00:00
|
|
|
|
|
|
|
export const languages = [
|
2018-11-16 09:45:41 +00:00
|
|
|
{
|
|
|
|
key: 'en',
|
|
|
|
name: 'English',
|
|
|
|
},
|
2018-11-09 06:51:28 +00:00
|
|
|
{
|
|
|
|
key: 'vi',
|
|
|
|
name: 'Tiếng Việt',
|
|
|
|
},
|
|
|
|
{
|
2018-11-16 09:45:41 +00:00
|
|
|
key: 'ru',
|
|
|
|
name: 'Русский',
|
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({
|
|
|
|
resources: {
|
2018-11-16 09:45:41 +00:00
|
|
|
vi: {
|
|
|
|
translation: vi,
|
|
|
|
},
|
|
|
|
en: {
|
|
|
|
translation: en,
|
|
|
|
},
|
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
|
2018-10-25 06:52:03 +00:00
|
|
|
interpolation: {
|
|
|
|
escapeValue: false, // not needed for react!!
|
|
|
|
},
|
|
|
|
react: {
|
|
|
|
wait: true,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
export default i18n;
|