ANGULAR ROUTE LOCALIZATION
[
{ path: ‘home’, component: HomeComp },
{ path: ‘users’,
children: [
{ path: ‘’, component: UsersComp },
{ path: ‘:id’, component: UserComp },
{ path: ‘:id/account’, component: AccountComp}
]
}
]
original routes
[
{ path: ‘’, redirectTo: ‘en’, pathMatch: ‘full’ },
{ path: ‘de’,
children: [
{ path: ‘startseite’, component: HomeComp },
{ path: ‘benutzer’,
children: [
{ path: ‘’, component: UsersComp },
{ path: ‘:id’, component: UserComp },
{ path: ‘:id/bericht’, component: AccountComp}
]
}
]
}
]
translated routes (*de)