Custom URL for i18n
[issue link]Hi,
I’m trying to get understand how can I set-up a custom URL name that depends on the language selected.
In the i18n example provided:
-
when english is selected, the url is for the “about” page:
https://i18n.nuxtjs.org/about -
when french is selected, the url is for the “about” page:
https://i18n.nuxtjs.org/fr/about
I think it will make more sense to translate as well the url as follow:
https://i18n.nuxtjs.org/fr/a-propos
where the french translation of “about” would be “à propos” made url friendly, so “a-propos”
How can I achieve this while keeping the set-up as proposed in the example ?
https://nuxtjs.org/examples/i18n
Thanks