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.AgoraChatTextMessageBody.targetLanguages
, 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:
[AgoraChatClient.sharedClient.chatManager fetchSupportedLangurages:^(NSArray<AgoraChatLanguage *> * _Nullable languages, AgoraChatError * _Nullable error) {
}];
When the recipient receives a text message, call translateMessage
to translate the message. When the translation finishes, the translated message is stored in the message.
// Only text messages can be translated.
[AgoraChatClient.sharedClient.chatManager translateMessage:message targetLanguages:@[@"en"] completion:^(AgoraChatMessage *message, AgoraChatError *error) {
// Get the translation.
AgoraChatTextMessageBody* body = (AgoraChatTextMessageBody*)message.body;
NSDictionary* translations = body.translations;
}];
When creating a text message, the sender enables automatic translation by setting AgoraChatTextMessageBody.targetLanguages
as the target language for translation:
AgoraChatTextMessageBody* msgBody = [[AgoraChatTextMessageBody alloc] initWithText:@"Hello!!"];
msgBody.targetLanguages = @[@"en",@"ja"];
AgoraChatMessage *message = [[AgoraChatMessage alloc] initWithConversationID:@"to" from:@"from" to:@"to" body:msgBody ext:nil];
[AgoraChatClient.sharedClient.chatManager sendMessage:message progress:nil completion:nil];
The SDK sends both the original message and the translated message. Once the recipient receives the message, refer to the following code sample to get the translation:
- (void)messagesDidReceive:(NSArray *)aMessages
{
for (AgoraChatChatMessage *msg in aMessages) {
if (msg.body.type == AgoraChatMessageBodyTypeText) {
// Get the translation
AgoraChatTextMessageBody* body = (AgoraChatTextMessageBody*)message.body;
NSDictionary* translations = body.translations;
}
}
}