0๐
โ
I dont know in jaavascript, but in typescript you should import :
import {TranslateService} from "ng2-translate";
Load it into your constructor :
constructor(private translate : TranslateService) { }
and use it into your code like this:
this.translate.instant("global.congratulation")
This one is working to me.
Source:stackexchange.com