🐛(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:
Anthony LC
2024-02-19 15:50:55 +01:00
committed by Anthony LC
parent fc8dc24ba2
commit 4bd8095975
4 changed files with 6 additions and 6 deletions

View File

@@ -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,
);
}

View File

@@ -4,6 +4,7 @@ const config = {
description: '${description}',
},
keepRemoved: false,
keySeparator: false,
};
export default config;

View File

@@ -4,6 +4,7 @@ const config = {
description: '${description}',
},
keepRemoved: true,
keySeparator: false,
};
export default config;