Translation is a popular feature widely used in real-time chat apps. To enable translation, the Agora 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:
Before proceeding, ensure that your development environment meets the following requirements:
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.This section introduces how to integrate translation functionalities into your project.
In both on-demand translation and automatic translation scenarios, call fetchSupportLanguages
to query the supported languages for translation first:
ChatClient.getInstance().chatManager().fetchSupportLanguages(new ValueCallBack<List<Language>>{});
When the recipient receives a text message, call translateMessage
to translate the message:
List<String> languageList = new ArrayList<>();
languageList.add("en");
...
ChatClient.getInstance().chatManager().translateMessage(
message,
languageList,
new ValueCallBack<ChatMessage>() {});
When the translation finishes, the translated message is stored in the message. Call getTranslations
to get the translated message:
TextMessageBody body = (TextMessageBody)message.getBody();
List<TranslationInfo> infoList = body.getTranslations();
When creating a text message, the sender enables automatic translation by setting MessageBody.setTargetLanguage
as the target language for translation:
TextMessageBody body = new TextMessageBody("The message content");
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:
TextMessageBody body = (TextMessageBody)message.getBody();
List<TranslationInfo> infoList = body.getTranslations();