It's not really a problem but it's a question :
In a test project, I try to use ng2-translate in multiple ngModule with a same TranslateService.
package.json :
"ng2-translate": "^4.0.0"
It's not working, for every module I must to declare a new
'TranslateModule'
And in components, it's a new TranslateService so it's does not keep translate language value.
Have you trying to inject same service in multiple ngModule ? if yes, how ?
Thanks.