revision:
The translate attribute specifies whether the content of an element should be translated or not.
The translate attribute is part of the global attributes and can be used on any HTML element.
<element translate=" yes | no"></element>
yes specifies that the content of the element should be translated;
no specifies that the content of the element must not be translated.
Don't translate this!
This can be translated to any language.
<h3><strong >translate attribute</strong></h3> <p class="spec" translate="no">Don't translate this!</p> <p class="spec">This can be translated to any language.</p>
Content of the element should not translated.
Content of the element should be translated.
<p class="spec" translate="no">Content of the element should not translated.</p> <p class="spec" translate="yes">Content of the element should be translated.</p>