Translate dashboard to Vietnamese with i18n

This commit is contained in:
hoangnd
2018-10-25 13:52:03 +07:00
parent f8ee8a7907
commit e1069f6bd1
15 changed files with 240 additions and 59 deletions

25
client/src/i18n.js Normal file
View File

@@ -0,0 +1,25 @@
import i18n from 'i18next';
import { reactI18nextModule } from 'react-i18next';
import langDetect from 'i18next-browser-languagedetector';
import viResource from './__locales/vi';
i18n
.use(langDetect)
.use(reactI18nextModule) // passes i18n down to react-i18next
.init({
resources: {
vi: viResource,
},
fallbackLng: 'en',
keySeparator: false, // we use content as keys
interpolation: {
escapeValue: false, // not needed for react!!
formatSeparator: ',',
},
react: {
wait: true,
},
});
export default i18n;