We make a web application and some customers had problems caused by the Firefox translator.
Specifically it translates the content of hidden input fields like this:
<i… (читать ещё)
We make a web application and some customers had problems caused by the Firefox translator.
Specifically it translates the content of hidden input fields like this:
<input name="ACTION" id="ACTION" type="hidden" value="login" translate="no" data-translate="false"/>
causing the application to not work anymore.
(the translator changed the word "login" to "login in und in").
Note the 2 attributes I have added in the html, which DON'T prevent translation.
The input field is inside this block:
<body class="notranslate">
class="notranslate" seems to prevent translation of the various labels inside the body, but NOT of the value of the hidden input field.
As it is a multilanguage application (the users can change the language inside the application), I would like to entirely disable translation by the browser for this web site. Can this be done using certain tags or attributes?
At least I would like that the content of input fields is not modified by the translator. Is that possible?