The package i18n will handle the internationalization of the applications. It will parse the frontend code and extract the translations to be send to the crowdin platform.
11 lines
177 B
JavaScript
11 lines
177 B
JavaScript
const config = {
|
|
customValueTemplate: {
|
|
message: '${key}',
|
|
description: '${description}',
|
|
},
|
|
keepRemoved: false,
|
|
keySeparator: false,
|
|
};
|
|
|
|
export default config;
|