Similar to the backend i18n
, you can also use project level
language resources to override module level
language resources at frontend
For example, change 世界,您好
to 您好,世界
, while 世界,您好
has been defined in the module test-party
src/front/config/locale/zh-cn.js
export default {
'Hello World': '您好,世界',
};
Comments: