Hello,
I'm trying to create an Angular SSR (v18) application using the ngx-translate module. I'm keeping the language as the first segment in the URL, e.g., "/en/...". When the application starts, the en.json file is already stored in the ng-state (which is what we want), but if I navigate directly to a different language version, such as fr, the fr translations are not present in the ng-state.
I've tried various ways to pass the language from the server to the client, but it seems that I should somehow generate separate versions for each language. However, I'm not sure how to do that.