I want to use a translation in sidemenu titles, I read this tutorial and I solve it as:
translate.get('HOME').subscribe(res => {
this.pages= [
{title: res , component: HomePage},
{title: 'My Account', component: MyAccountPage},
{title: 'Changer Pass' , component: ChangePasswordPage}
]
It works, but the problem is that I want t get many title from the translation file to set them as sidemenu titles.