docs.rodeo

MDN Web Docs mirror

Translator and Language Detector APIs

{{SeeCompatTable}} {{DefaultAPISidebar("Translator and Language Detector APIs")}} 

The Translator and Language Detector APIs provide functionality to detect the language that text is written in, and to translate text into different languages, via a browser’s own internal AI model (which may differ between browsers).

Concepts and usage

Translating a body of text is a common task on today’s web. Typical use cases include:

Detecting the language of a body of test is an important precursor for successful automated translation, but has other uses beyond direct translation. For example, it allows automatic UI configuration based on user text entry, ranging from updating UI and error strings, to automatically loading appropriate dictionaries for spell checking or curse word detection.

AI is well-suited to facilitating language detection and translation. The Translator and Language Detector APIs provide asynchronous ({{jsxref("Promise")}} -based) mechanisms for a website to detect languages and translate text via the browser’s own internal AI model. This is useful and efficient because the browser handles the service, rather than the developer having to rely on the user downloading AI models, or host or pay for a cloud-based translation service.

You can also cancel pending operations using an {{domxref("AbortController")}} .

The Translator and LanguageDetector instances consume a lot of resources, so once you’re finished with them, you are encouraged to remove them using a destroy() instance method (for example, {{domxref("Translator.destroy()")}} ).

See Using the Translator and Language Detector APIs for a walkthrough of how to use the APIs.

Interfaces

HTTP headers

Security considerations

Creation of LanguageDetector and Translator objects requires that the user has recently interacted with the page (transient user activation is required).

Access to the API is also controlled via {{httpheader("Permissions-Policy/language-detector", "language-detector")}}  and {{httpheader("Permissions-Policy/translator", "translator")}}  {{httpheader("Permissions-Policy")}}  directives.

Examples

For a full example, see Using the Translator and Language Detector APIs.

Specifications

{{Specifications}} 

Browser compatibility

{{Compat}} 

See also

In this article

View on MDN