Chromium has removed --translate flag ( https://superuser.com/questions/1237561/disable-chromes-page-translation-on-the-commandline).
There are two workarounds till the new fix from chromium appears on Pi (--disable-features=TranslateUI)
- Select "never translate option for <language>" in the popup
- If you have access, is to remove the lang from html tag or set it to "en" or add <meta name="google" content="notranslate"> to head section of html
Comments
1 comment
Still working is the following permanent fix for all chromium sessions:
Terminal commands:
sudo mkdir -p /etc/chromium/policies/managed
sudo nano /etc/chromium/policies/managed/translate.json
insert:
{
"TranslateEnabled": false
}
&&
reboot the device ;-), have fun & be brave
Please sign in to leave a comment.