Please do not use an operator in this case forkJoin. ngx-translate supports fetching multiple translations at once, passing an array of keys to the method get()as follows:
translate.get(['HOME', 'MY_ACCOUNT', 'CHANGE_PASSWORD']).subscribe(translations => {
this.pages= [
{ title: translations.HOME, component: HomePage},
{ title: translations.MY_ACCOUNT, component: MyAccountPage},
{ title: translations.CHANGE_PASSWORD, component: ChangePasswordPage}
];
})
Edit
Here you can find all supported methods and their signature.
David source
share