Having developed an Angular application, there is now a need for a desktop version as well. Electron was used to run the application, and everything is functioning as intended.
However, an issue arises with localization. In the electron application, only the localization keys are visible, which should point to the actual translations in the localization files.
Text is primarily translated in Angular using the following format:
{{ "localization-key" | translate }}
The translations as JSON files are stored in assets/i18n/
Any suggestions on how to make the localization work properly?