Changing Language
You will find a Language selector in the header, click on that and select the language of your choice.
src/@crema/utility/AppContextProvider/defaultConfig.js
locale: {
languageId: 'english',
locale: 'en',
name: 'English',
icon: 'us',
},
src/@crema/core/AppLngSwitcher/data.js
const languageData = [
{
languageId: 'english',
locale: 'en',
name: 'English',
},
{
languageId: 'chinese',
locale: 'zh',
name: '中国人',
},
{
languageId: 'spanish',
locale: 'es',
name: 'Español',
},
{
languageId: 'french',
locale: 'fr',
name: 'français',
},
{
languageId: 'italian',
locale: 'it',
name: 'Italiano',
},
{
languageId: 'arabia',
locale: 'ar',
name: 'عربي',
},
];
export default languageData;
Last updated