how to translate contents in dynamic pages?

Good morning everyone, following the advice of Wix Velo, I have created a code to translate my dynamic content within the pages into various languages of my site.
After various attempts, I managed to find a code that worked correctly. It seems that everything works, but there is still a problem that I have not been able to solve.
I followed the advice of the Velo team and created an element in English with the “en” language field and then created the filter on the dataset.
Below is the code used.

DETAIL ELEMENT PAGE CODE

import wixLocation from 'wix-location';
import wixData from 'wix-data';

$w.onReady(function () {
let language = wixLocation.path[1];
let itemId = wixLocation.path[2];
$w("#idDataset").setFilter(wixData.filter().eq("language", language).eq("_id", itemId));
});

REPEATER PAGE CODE

import wixWindow from 'wix-window';
import wixData from 'wix-data';

$w.onReady(function () {
let language = wixWindow.multilingual.currentLanguage;
$w("#idDataset").setFilter( wixData.filter().eq("language", language) );
});

export function teamRepeater_itemReady($item) {
let language = wixWindow.multilingual.currentLanguage
$w("#idDataset").setFilter( wixData.filter().eq("language", language) );
}

PAGE DETAIL URL SETTING
parco-auto/{language}/{Nome auto}

Everything works if I change the language on the homepage, but if I change the language when I am inside the detail page, the page does not change and the original language content remains. The system only modifies the link in an unusual way.
I have looked for guides to resolve this issue with a page refresh when the language changes, but I have not found anything useful.
Could you please guide me on how to solve this problem?
I am available for further information.
Regards,
Giorgio