I am using coreui template for my angular application. In which i have added the @ngx-translate/core to translate my app. I have done translation for everything, but i couldn't add translation for the breadcrumbs provided by CoreUI.
layout.html
<div class="app-body">
<app-sidebar
#appSidebar
[fixed]="true"
[display]="'lg'"
[minimized]="sidebarMinimized"
(minimizedChange)="toggleMinimize($event)"
>
<app-sidebar-nav
[navItems]="navItems"
[perfectScrollbar]
[disabled]="appSidebar.minimized"
></app-sidebar-nav>
<app-sidebar-minimizer></app-sidebar-minimizer>
</app-sidebar>
<!-- Main content -->
<main class="main">
<!-- Breadcrumb -->
<cui-breadcrumb> </cui-breadcrumb> //breadcrumbs part
<div class="container-fluid">
<router-outlet></router-outlet>
</div>
</main>
</div>
Routes File:
const routes: Routes = [
{
path: '',
data: {
title: 'Devices',
},
children: [
{
path: '',
component: ListComponent,
data: {
title: 'List',
},
},
{
path: 'new',
component: AddComponent,
data: {
title: 'Add',
},
canDeactivate: [CanDeactivateGuard],
},
{
path: 'edit/:id',
component: EditComponent,
data: {
title: 'Edit',
},
canDeactivate: [CanDeactivateGuard],
},
{
path: ':id',
component: DetailComponent,
data: {
title: 'Detail',
},
},
{
path: ':id/configuration/add',
component: AddTrafficSteeringComponent,
data: {
title: 'Add Configuration',
},
canDeactivate: [CanDeactivateGuard],
},
{
path: ':id/configuration/edit/:configurationId',
component: EditTrafficSteeringComponent,
data: {
title: 'Edit Configuration',
},
canDeactivate: [CanDeactivateGuard],
},
],
},
];
I would like to know how to add translation for the breadcrumbs
I solved this by copying the CoreUI component and slightly modifying it:
breadcrumb.component.html (note the check for a translate key)
breadcrumb.component.ts (unchanged)
breadcrumb.service.ts (unchanged)
Use it like this: