I would like to implement dynamic elements into multiple translations with ngx-translate, in order to fuse this solution (multiple translations) :
this.translate.get(['HOME', 'MY_ACCOUNT', 'CHANGE_PASSWORD']).subscribe(res => {
showToast(res.HOME,res.MY_ACCOUNT,res.CHANGE_PASSWORD);
});
with that one (dynamic text) :
this.translate.get('HOME', {value: 'test_HOME'}).subscribe(res => {
showToast(res);
});