I'm struggling with design of i18n handling, what should we do after a user has changed the language?
- Reload the browser with the selected language
- Dynamically update the labels and other translatable things without a refresh
Any suggestion on this?
BTW, keep in mind we build a SPA project, the project size won't be as large as an E-commerce portal
Possible solutions with i18n (you will need reload page when language is changed, angualr i18n can't update displayed data in runtime):
With using ngx-translate u can saw actually language when it changed (runtime updated).
Thanks!