docs.rodeo

MDN Web Docs mirror

translate

{{HTMLSidebar("Global_attributes")}} 

The translate global attribute is an enumerated attribute that is used to specify whether an element’s translatable attribute values and its {{domxref("Text")}}  node children should be translated when the page is localized, or whether to leave them unchanged.

It can have the following values:

Although not all browsers recognize this attribute, it is respected by automatic translation systems such as Google Translate, and may also be respected by tools used by human translators. As such it’s important that web authors use this attribute to mark content that should not be translated.

Examples

In this example, the translate attribute is used to ask translation tools not to translate the company’s brand name in the footer.

<footer>
  <small>© 2020 <span translate="no">BrandName</span></small>
</footer>

Specifications

{{Specifications}} 

Browser compatibility

{{Compat}} 

See also

In this article

View on MDN