Translate dashboard to Vietnamese with i18n
This commit is contained in:
25
client/src/i18n.js
Normal file
25
client/src/i18n.js
Normal 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;
|
||||
Reference in New Issue
Block a user