I am seeking to incorporate dynamic elements into multiple translations using ngx-translate. This involves combining this solution for handling multiple translations:
this.translate.get(['HOME', 'MY_ACCOUNT', 'CHANGE_PASSWORD']).subscribe(res => {
showToast(res.HOME,res.MY_ACCOUNT,res.CHANGE_PASSWORD);
});
and this one for dealing with dynamic text:
this.translate.get('HOME', {value: 'test_HOME'}).subscribe(res => {
showToast(res);
});