Introduction

Heads up... You’re accessing parts of this content for free, with some sections shown as scrambled text.

Heads up... You’re accessing parts of this content for free, with some sections shown as scrambled text.

Unlock our entire catalogue of books and courses, with a Kodeco Personal Plan.

Unlock now

In the previous lesson, you learned how to translate a cafe review using the built-in system UI translation pop-up. Imagine you’re a tourist and want to see all the information about a cafe, such as the name, address, description, menu, and highlights in your native language. Trying to translate all of them using the built-in system UI translation would be inconvenient and time-consuming.

If your app handles a large volume of user-generated content—cafe descriptions and reviews in this case—it can benefit from the TranslationSession API. When translating multiple text strings at once, the API allows these translations to be processed efficiently in one go, maintaining consistency and reducing the processing time.

By the end of this lesson, you will have learned to:

  • Describe how to use TranslationSession to translate a batch of text strings
  • Explain how to choose the appropriate translation method based on the app requirements
See forum comments
Download course materials from Github
Previous: Quiz: Using the Translating Overlay Next: Instruction 1