Hi,
I want to use an internationalized side menu theme.
This works great for all the pages except for the start-page. There the initial key of the 118n localization file is displayed. After a reload of the page, the string is substituted correctly to the translation.
Keys are loaded like:
Observable.forkJoin(
this.translate.get('page_onet'),
this.translate.get('page_second')
).subscribe(value => {
// set our app's pages
this.pages = [
{ title: value[0], component: Page1 },
{ title: value[1], component: Page2 }
];