I am currently using Transloco to do my translations in angular application. I have 2 files in my assets:
en.json with values:
{ "firstName": "First Name", "lastName": "Last Name", "address": "Address" }
fr.json with values (lastName missing):
{ "firstName": "First Name", "address": "Address" }
I am doing the translation for values retrieved from the backend and not using them directly. So all these keys are flagged up as extra keys when I use the command:
npm run i18n:find
The consequence is that it is impossible to know if Last Name is missing from the french translation file. Is there a way/command to compare the translation files with each other and see which files has missing translations?