If I enter the below in my app.component.ts constructor, it does not work.
alert(this.translateService.translate('navigation.dashboard'));
However if I enter this same code in a submodule, it works fine.
This is my .json file:
"navigation": {
"dashboard": "Dashboard"
}
In my app.module.ts, the TranslocoRootModule is imported too.
import { TranslocoRootModule } from './transloco/transloco-root.module';
imports: [
...
HttpClientModule,
TranslocoRootModule
],
Did I miss out anything?