Skip to content

Commit 6c23b44

Browse files
Merge pull request #5467 from MicrosoftDocs/main
Merged by Learn.Build PR Management system
2 parents 776cc95 + 64f489f commit 6c23b44

File tree

13 files changed

+189
-148
lines changed

13 files changed

+189
-148
lines changed

articles/ai-services/speech-service/includes/release-notes/release-notes-stt.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ ms.author: eur
77
ms.custom: references_regions
88
---
99

10+
### June 2025 release
11+
12+
#### Improved speech to text models
13+
Accuracy of speech to text models for `de-DE`, `en-US`, `en-GB`, `es-ES`, `es-MX`, `fr-FR`, `it-IT`, `ja-JP`, `ko-KR`, `pt-BR`, and `zh-CN` locales are improved by 10%-25% percent respectively, particularly with improved readaibility and recognition on entities.
14+
1015
### May 2025 release
1116

1217
#### Improved speech to text models

articles/ai-services/translator/document-translation/how-to-guides/use-rest-api-programmatically.md

Lines changed: 71 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ author: laujan
55
manager: nitinme
66
ms.service: azure-ai-translator
77
ms.topic: quickstart
8-
ms.date: 04/14/2025
8+
ms.date: 06/10/2025
99
ms.author: lajanuar
1010
recommendations: false
1111
ms.devlang: csharp
@@ -183,6 +183,76 @@ The following headers are included with each Document translation API request:
183183
}
184184
```
185185

186+
### Translate text embedded within images in documents 🆕
187+
188+
> [!Note]
189+
>
190+
> * This feature is optional and must be enabled for each translation request.
191+
> * Enabling this feature will incur additional costs based on usage. For more information, *see* [Azure AI Vision pricing](https://azure.microsoft.com/pricing/details/cognitive-services/computer-vision/)
192+
> * This feature is currently available only with the Batch Document translation API.
193+
> * The Supported file format is `.docx` only.
194+
> * An Azure AI Foundry resource (not the standalone Translator resource) is required to use this feature.
195+
196+
### Request configuration
197+
198+
* Use the optional `translateTextWithinImage` parameter in the `options` field
199+
200+
* Data type: Boolean (`true` or `false`)
201+
* Default Boolean setting is `false`. Set the option to `true` to enable image text translation.
202+
203+
* Here's a sample JSON request:
204+
205+
```json
206+
{
207+
"inputs": [
208+
{
209+
"source": {
210+
"sourceUrl": "<SAS-URL>",
211+
"language": "en"
212+
},
213+
"targets": [
214+
{
215+
"targetUrl": "<SAS-URL>",
216+
"language": "ta"
217+
}
218+
]
219+
}
220+
],
221+
"options": {
222+
"experimental": false,
223+
"translateTextWithinImage": true
224+
}
225+
}
226+
```
227+
228+
* **Response Details**. When the feature is enabled, added image processing information is included with the response:
229+
230+
* **`totalImageScansSucceeded`**. The number of successfully translated image scans.
231+
232+
* **`totalImageScansFailed`**. The number of image scans that failed processing.
233+
234+
* Here's a sample JSON response:
235+
236+
```json
237+
{
238+
"id": "1a2b0c23-45d6-789-a123-a456fdaf7890",
239+
"createdDateTimeUtc": "2024-11-13T22:06:58.2789197Z",
240+
"lastActionDateTimeUtc": "2024-11-13T22:07:14.1608283Z",
241+
"status": "Running",
242+
"summary": {
243+
"total": 1,
244+
"failed": 0,
245+
"success": 0,
246+
"inProgress": 1,
247+
"notYetStarted": 0,
248+
"cancelled": 0,
249+
"totalCharacterCharged": 0,
250+
"totalImageScansSucceeded": 2,
251+
"totalImageScansFailed": 0
252+
}
253+
}
254+
```
255+
186256
### Translate documents using a custom glossary
187257

188258
```json
@@ -209,29 +279,6 @@ The following headers are included with each Document translation API request:
209279
}
210280
```
211281

212-
### 🆕 Translate text embedded in images within documents
213-
214-
> [!Note]
215-
>
216-
> * This feature is optional and must be enabled for each translation request.
217-
> * Enabling this feature will incur additional costs based on usage. For more information, *see* [Azure AI Vision pricing](https://azure.microsoft.com/pricing/details/cognitive-services/computer-vision/)
218-
> * This feature is currently available only with the Batch Document translation API.
219-
> * The Supported file format is `.docx` only.
220-
> * An Azure AI Foundry resource (not the standalone Translator resource) is required to use this feature.
221-
222-
### Request configuration
223-
224-
* Use the optional `translateTextWithinImage` parameter in the `options` field
225-
226-
* Data type: Boolean (`true` or `false`)
227-
* Default Boolean setting is `false`. Set the option to `true` to enable image text translation.
228-
229-
* **Response Details**. When the feature is enabled, added image processing information is included with the response:
230-
231-
* **`totalImageScansSucceeded`**. The number of successfully translated image scans.
232-
233-
* **`totalImageScansFailed`**. The number of image scans that failed processing.
234-
235282
## Use code to submit Document translation requests
236283

237284
### Set up your coding Platform

articles/ai-services/translator/document-translation/overview.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ author: laujan
55
manager: nitinme
66
ms.service: azure-ai-translator
77
ms.topic: overview
8-
ms.date: 04/14/2025
8+
ms.date: 06/03/2025
99
ms.author: lajanuar
1010
ms.custom: references_regions
1111
recommendations: false
@@ -36,6 +36,7 @@ Use asynchronous document processing to translate multiple documents and large f
3636
| ---------| -------------|
3737
|**Translate large files**| Translate whole documents asynchronously.|
3838
|**Translate numerous files**|Translate multiple files across all supported languages and dialects while preserving document structure and data format.|
39+
|[**Translate text embedded within images in documents** 🆕](how-to-guides/use-rest-api-programmatically.md#translate-text-embedded-within-images-in-documents-).| This feature is available with the [batch document translation](how-to-guides/use-rest-api-programmatically.md#translate-text-embedded-within-images-in-documents-) API for `.docx` file format.|
3940
|**Preserve source file presentation**| Translate files while preserving the original layout and format.|
4041
|**Apply custom translation**| Translate documents using general and [custom translation](../custom-translator/concepts/customization.md#azure-ai-custom-translator) models.|
4142
|**Apply custom glossaries**|Translate documents using custom glossaries.|

articles/ai-services/translator/document-translation/quickstarts/client-library-sdks.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,4 +70,4 @@ To learn more, *see* [**Create SAS tokens**](../how-to-guides/create-sas-tokens.
7070
### Next step
7171

7272
> [!div class="nextstepaction"]
73-
> [**Learn more about Document translation operations**](../reference/rest-api-guide.md)
73+
> [**Learn more about Document translation operations**](../how-to-guides/use-rest-api-programmatically.md)

articles/ai-services/translator/whats-new.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ author: laujan
66
manager: nitinme
77
ms.service: azure-ai-translator
88
ms.topic: overview
9-
ms.date: 05/29/2025
9+
ms.date: 06/03/2025
1010
ms.author: lajanuar
1111
---
1212
<!-- markdownlint-disable MD024 -->
@@ -21,6 +21,16 @@ Azure AI Translator is a language service that enables users to translate text a
2121

2222
Azure AI Translator service supports language translation for more than 100 languages. If your language community is interested in partnering with Microsoft to add your language to Translator, contact us via the [Translator community partner onboarding form](https://forms.office.com/pages/responsepage.aspx?id=v4j5cvGGr0GRqy180BHbR-riVR3Xj0tOnIRdZOALbM9UOU1aMlNaWFJOOE5YODhRR1FWVzY0QzU1OS4u).
2323

24+
## June 2025
25+
26+
### Document Translation new feature update
27+
28+
Azure AI Translator [Document translation feature](document-translation/overview.md#batch-key-features) now supports [translating text embedded in images](document-translation/how-to-guides/use-rest-api-programmatically.md#translate-text-embedded-within-images-in-documents-) within documents.
29+
30+
* This feature is optional and must be enabled for each translation request.
31+
* Currently, the feature is available only with the [batch document translation](document-translation/how-to-guides/use-rest-api-programmatically.md#translate-text-embedded-within-images-in-documents-) API for `.docx` file format.
32+
* An [Azure AI Foundry resource](https://portal.azure.com/?Microsoft_Azure_PIMCommon=true#create/Microsoft.CognitiveServicesAIFoundry) (not the standalone Translator resource) is required to use this feature.
33+
2434
## May 2025
2535

2636
### Microsoft Translator Pro new feature update
-206 KB
Loading
-188 KB
Loading
-157 KB
Loading
6.8 KB
Loading
6.16 KB
Loading

0 commit comments

Comments
 (0)