🐛(i18n) dot in key was not added
The parser was not adding the dot in the key to the json file sent to crowdin. Some translations were not being translated correctly.
This commit is contained in:
@@ -29,7 +29,7 @@ describe('checks all the frontend translation are made', () => {
|
||||
|
||||
if (missingKeys.length > 0) {
|
||||
console.log(
|
||||
`Missing keys in Desk translations that should be translated in Crowdin, got to https://crowdin.com/:`,
|
||||
`Missing keys in Desk translations that should be translated in Crowdin, got to https://crowdin.com/ :`,
|
||||
missingKeys,
|
||||
);
|
||||
}
|
||||
|
||||
@@ -4,6 +4,7 @@ const config = {
|
||||
description: '${description}',
|
||||
},
|
||||
keepRemoved: false,
|
||||
keySeparator: false,
|
||||
};
|
||||
|
||||
export default config;
|
||||
|
||||
@@ -4,6 +4,7 @@ const config = {
|
||||
description: '${description}',
|
||||
},
|
||||
keepRemoved: true,
|
||||
keySeparator: false,
|
||||
};
|
||||
|
||||
export default config;
|
||||
|
||||
Reference in New Issue
Block a user