mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2025-11-10 04:22:27 +10:00
55 lines
758 B
JavaScript
55 lines
758 B
JavaScript
const path = require('path');
|
|
|
|
const i18nConfig = {
|
|
i18n: {
|
|
defaultLocale: 'en',
|
|
locales: [
|
|
'am',
|
|
'ar',
|
|
'bg',
|
|
'bn',
|
|
'ca',
|
|
'cs',
|
|
'da',
|
|
'de',
|
|
'el',
|
|
'en',
|
|
'es',
|
|
'fa',
|
|
'fi',
|
|
'fr',
|
|
'he',
|
|
'hi',
|
|
'hu',
|
|
'id',
|
|
'it',
|
|
'ja',
|
|
'km',
|
|
'kn',
|
|
'ko',
|
|
'ml',
|
|
'mr',
|
|
'ne',
|
|
'nl',
|
|
'no',
|
|
'or',
|
|
'pl',
|
|
'pt',
|
|
'ro',
|
|
'ru',
|
|
'sr',
|
|
'sv',
|
|
'ta',
|
|
'tr',
|
|
'uk',
|
|
'vi',
|
|
'zh',
|
|
],
|
|
},
|
|
nsSeparator: '.',
|
|
localePath: path.resolve('./public/locales'),
|
|
ns: ['common', 'modals', 'landing', 'dashboard', 'builder'],
|
|
};
|
|
|
|
module.exports = i18nConfig;
|