Disable auto translation

Hi, I’m encountering an issue with my client : I built a client portal for his clients, but when they log in, they see strange words like “Californie” instead of “CA” (which means “turnover” in french, and other really surprising examples).
It’s simply the auto translation of the browser that translates the page, but it shouldn’t.

Do you know how I could disable the possibility for the client portal content to be translated ?

Thanks in advance

I am guessing google is deciding to translate automatically, i think they can unselect that option with the translator but otherwise, apparently you can put this tag in the head and it should help:

Hope this helps

2 Likes

Hi Corner :waving_hand:

Antoine was right, you need to put a tag in your page head.
(he just forgot to share the code snippet)

Here’s two approaches you can try:

<html translate="no">

This one is more general.

But you can also try one that’s geared towards google translate:

<meta name="google" content="notranslate">

Hope this helped

2 Likes

Amazing ! Thanks both of you

1 Like

I did forgot to share the code snippet :rofl:

2 Likes