Skip to main content
Android
iOS
Web
Windows
Unity
Flutter
React Native

Translate messages

Translation is a popular feature widely used in real-time chat apps. To enable translation, the Chat SDK has integrated the Microsoft Azure Translation API, which enables messages to be translated either when they are being sent or after they are received.

The SDK supports translation in the following use cases:

  • On-demand translation, where the SDK translates the text message after the recipient receives it.
  • Automatic translation, where the SDK translates the text message when the sender sends it. The recipient receives both the original message and the translation simultaneously.

Prerequisites

Before proceeding, ensure that your development environment meets the following requirements:

  • Your project integrates a version of the Chat SDK later than v1.0.3 and has implemented the basic real-time chat functionalities.
  • You understand the API call frequency limit as described in Limitations.
  • Because this feature is enabled by the Microsoft Azure Translation API, ensure that you understand the supported target languages as described in Language support.
  • Translation is not enabled by default. To use this feature, you need to subscribe to the Pro or Enterprise pricing plan and enable it in Agora Console.
Add-on fees are incurred if you use this feature. See Pricing for details.

Understand the tech

The Chat SDK provides the following methods for implementing translation functionalities:

  • fetchSupportLanguages, which queries the supported languages for translation.
  • translateMessage, which translates the text message after it is received.
  • MessageBody.setTargetLanguages, which automatically translates the text message when it is being sent. When the recipient receives the message, it contains the message in both the original and target languages.

Implementation

This section introduces how to integrate translation functionalities into your project.

Query the supported languages for translation

In both on-demand translation and automatic translation scenarios, call fetchSupportLanguages to query the supported languages for translation first:


_1
ChatClient.getInstance().chatManager().fetchSupportLanguages(new ValueCallBack<List<Language>>{});

On-demand translation

When the recipient receives a text message, call translateMessage to translate the message:


_7
List<String> languageList = new ArrayList<>();
_7
languageList.add("en");
_7
...
_7
ChatClient.getInstance().chatManager().translateMessage(
_7
message,
_7
languageList,
_7
new ValueCallBack<ChatMessage>() {});

When the translation finishes, the translated message is stored in the message. Call getTranslations to get the translated message:


_2
TextMessageBody body = (TextMessageBody)message.getBody();
_2
List<TranslationInfo> infoList = body.getTranslations();

Automatic translation

When creating a text message, the sender enables automatic translation by setting MessageBody.setTargetLanguage as the target language for translation:


_2
TextMessageBody body = new TextMessageBody("The message content");
_2
body.setTargetLanguages(languageList);

The SDK sends both the original message and the translated message. After the recipient receives the message, call getTranslations to retrieve the translated message:


_2
TextMessageBody body = (TextMessageBody)message.getBody();
_2
List<TranslationInfo> infoList = body.getTranslations();

vundefined