In the home.component.ts file, I have the following code:
notificationId.innerHTML = message
This code displays a message as a notification on the site.
I am trying to figure out how to translate the message and display the translated version on the site. Here is what I have tried:
this.translate.instant(message)
notificationId.innerHTML = message
Unfortunately, this approach did not work. I have all the translations for the messages stored in a json file.
Thank you in advance for any help or suggestions!