Implementing Document Translation With Multiple Documents
Understand how to implement document translation with Azure Translator by processing multiple documents stored in blob containers. Learn to configure source and target storage, generate SAS tokens, submit translation requests, and check operation status within Azure's Standard tier service.
Introduction
In the previous lesson, we implemented translation of the text which is being sent as part of the request to the translator service. In this lesson, we’ll explore how a document can be translated from one language to the other using the translator service. The document translator service from Azure can process numerous documents, preserve the original presentation of the document while translating, apply custom translation, etc.
To work on this chapter, you would need a Standard tier subscription of the translator service. It will not work in the Free tier.
Implementation
Before moving on with the implementation, there are some steps that need to be done. The Document translator endpoint accepts an Azure blob storage URL with a SAS token. Follow the steps mentioned below to upload your documents in a blob container:
-
You can follow the steps mentioned in the chapter ...