Skip to content

Commit 82c7e67

Browse files
update changelog + some edits (Azure#20588)
1 parent c458c42 commit 82c7e67

File tree

4 files changed

+7
-8
lines changed

4 files changed

+7
-8
lines changed

sdk/translation/azure-ai-translation-document/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Release History
22

3-
## 1.0.0b5 (Unreleased)
3+
## 1.0.0b5 (2021-09-08)
44

55
### Breaking Changes
66
- Changed: `list_all_translation_statuses` has been renamed to `list_translation_statuses`

sdk/translation/azure-ai-translation-document/README.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -325,10 +325,10 @@ Note that you will need to install the [azure-storage-blob][azure_storage_blob]
325325

326326
## Advanced Topics
327327

328-
The following section provides some insights for some of the advanced translation features such as glossaries and custom translation models.
328+
The following section provides some insights for some advanced translation features such as glossaries and custom translation models.
329329

330330
### **Glossaries**
331-
Glossaries are domain-specific dictionaries. For example, if you want to translate some medical-related documents, you may need support for the many words, terminology, and idioms in the medical field which you can't find in the standard translation dictionary or you simply need specific translation. This is why Document Translation provides support for glossaries.
331+
Glossaries are domain-specific dictionaries. For example, if you want to translate some medical-related documents, you may need support for the many words, terminology, and idioms in the medical field which you can't find in the standard translation dictionary, or you simply need specific translation. This is why Document Translation provides support for glossaries.
332332

333333
#### **How To Create Glossary File**
334334

@@ -337,14 +337,13 @@ Document Translation supports glossaries in the following formats:
337337
|**File Type**|**Extension**|**Description**|**Samples**|
338338
|---------------|---------------|---------------|---------------|
339339
|Tab-Separated Values/TAB|.tsv, .tab|Read more on [wikipedia][tsv_files_wikipedia]|[glossary_sample.tsv][sample_tsv_file]|
340-
|Comma-Seperated Values|.csv|Read more on [wikipedia][csv_files_wikipedia]|[glossary_sample.csv][sample_csv_file]|
340+
|Comma-Separated Values|.csv|Read more on [wikipedia][csv_files_wikipedia]|[glossary_sample.csv][sample_csv_file]|
341341
|Localization Interchange File Format|.xlf, .xliff|Read more on [wikipedia][xlf_files_wikipedia]|[glossary_sample.xlf][sample_xlf_file]|
342342

343343
View all supported formats [here][supported_glossary_formats].
344344

345345
#### **How Use Glossaries in Document Translation**
346-
In order to use glossaries with Document Translation, you first need to upload your glossaries file to some blob container, and then provide the SaS url to of this glossary file to Document Translation as in the code samples [sample_translation_with_glossaries.py][sample_translation_with_glossaries].
347-
346+
In order to use glossaries with Document Translation, you first need to upload your glossary file to a blob container, and then provide the SAS URL to the file as in the code samples [sample_translation_with_glossaries.py][sample_translation_with_glossaries].
348347

349348
### **Custom Translation Models**
350349
Instead of using Document Translation's engine for translation, you can use your own custom Azure machine/deep learning model.

sdk/translation/azure-ai-translation-document/samples/async_samples/sample_translation_with_custom_model_async.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
FILE: sample_translation_with_custom_model_async.py
99
1010
DESCRIPTION:
11-
This sample demonstrates how to create a translation operation and apply custom azure translation model when doing the translation.
11+
This sample demonstrates how to create a translation operation and apply a custom translation model.
1212
1313
To set up your containers for translation and generate SAS tokens to your containers (or files)
1414
with the appropriate permissions, see the README.

sdk/translation/azure-ai-translation-document/samples/sample_translation_with_custom_model.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
FILE: sample_translation_with_custom_model.py
99
1010
DESCRIPTION:
11-
This sample demonstrates how to create a translation operation and apply custom azure translation model when doing the translation.
11+
This sample demonstrates how to create a translation operation and apply a custom translation model.
1212
1313
To set up your containers for translation and generate SAS tokens to your containers (or files)
1414
with the appropriate permissions, see the README.

0 commit comments

Comments
 (0)