Wix onclick event with different language choices

Question:
My site has wix multilingual function enabled and visitors can choose between English and Chinese. I have used the strip breaking into several columns. Every column has its own text. Since the text occupies a small area in the column background, I want to hyperlink the column background when onclick, to the respective page, apart from hyperlinking the text to the respective page. But since the two languages share the same column background, is there a way to hyperlink to the respective language page when onclick the same column background?

Product:
Wix Editor

What are you trying to achieve:
When in English version, onclick the column background will go to the dedicated English page; when in Chinese version, onclick the column background will go to the dedicated Chinese page.

What have you already tried:
There is no problem when there is only one language by following the scripts like this:

import wixLocation from “wix-location”;
export function column2_click(event, $w) {
wixLocation.to(“https://www.google.com”,)
}