我有以下路线,想为面包屑标签添加翻译。
const appRoutes: Routes = [
{ path: 'crisis-center', data: {breadcrumb: 'crisis center'}, component: CrisisListComponent },
{ path: 'hero/:id', data: {breadcrumb: 'hero'}, component: HeroDetailComponent },
{
path: 'heroes',
component: HeroListComponent,
data: { breadcrumb: 'Heroes List' }
},
{ path: '',
redirectTo: '/heroes',
data: {breadcrumb: 'Heros'},
pathMatch: 'full'
},
{ path: '**', data: {breadcrumb: 'Page not found'}, component: PageNotFoundComponent }
];
我四处寻找,没有发现任何东西。我想我可能可以使用i18n en.json
文件,但模板的所有示例。有没有办法将面包屑翻译成其他语言?