Closed joffreyBerrier closed 3 years ago
I want to translate this url : path: '/house/:id/detail'
path: '/house/:id/detail'
But I don't understand how i can translate them, I have tried three options but nothing works
"house/:id/detail": "maison/:id/coucou" "houseDetail": "maison/:id/coucou" "house-detail": "maison/:id/coucou"
Any help :) ?
Hi @joffreyBerrier, you should translate individual parts of URL separately, so probably this is what you're looking for:
{ "house": "maison", "detail": "coucou" }
I want to translate this url :
path: '/house/:id/detail'
But I don't understand how i can translate them, I have tried three options but nothing works
Any help :) ?