How can the URLs in an MVC application be localized.
So for example, I would have different URLs depending on the languate
- EN: .../user/...
- DE: .../Benutzer/...
I not only want this for nice URLs, but also generate my Breadcrumbs from this URLs, so this will genereate me something like:
- EN: Home -> User -> ..
- DE: Überischt -> Benutzer -> ....
I looked into the Routconfig, but didn't find any options for internationalization. Do I have to define a spezifice route for each internationalized URL?