Hi @medihack !
Welcome to the Redwood community 
Yes, we have some plan to introduce sub-path Routing for i18n.
You can look at this issue than will make possible optional path parameters :
For now, you can add path parameter for language in your routing and make it work with something like this :
const HomePage = ({language}) => {
const { t, i18n } = useTranslation()
useEffect(() => {
i18n.changeLanguage(language)
}, [i18n, language])
If you need some help with i18n + RedwoodJS, I will be more than happy to help you.
3 Likes