mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2025-11-19 19:21:33 +10:00
25 lines
383 B
JavaScript
25 lines
383 B
JavaScript
import i18n from 'i18next';
|
|
import { initReactI18next } from 'react-i18next';
|
|
import resources from './locales';
|
|
|
|
const languages = [
|
|
{
|
|
code: 'en',
|
|
name: 'English (US)',
|
|
},
|
|
{
|
|
code: 'kn',
|
|
name: 'Kannada (ಕನ್ನಡ)',
|
|
},
|
|
];
|
|
|
|
i18n.use(initReactI18next).init({
|
|
resources,
|
|
lng: 'en',
|
|
fallbackLng: 'en',
|
|
});
|
|
|
|
export { languages };
|
|
|
|
export default i18n;
|