Skip to content

Commit dda00c4

Browse files
authored
Update closed-captions-teams-interop-web.md
acrolinx and build fixes
1 parent 3256553 commit dda00c4

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

articles/communication-services/how-tos/calling-sdk/includes/closed-captions/closed-captions-teams-interop-web.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: include file
3-
description: Web how-to guide for enabling Closed captions during a call .
3+
description: Web how-to guide for enabling Closed captions during a call.
44
author: Kunaal
55
ms.service: azure-communication-services
66
ms.subservice: calling
@@ -12,11 +12,11 @@ ms.author: kpunjabi
1212

1313
## Prerequisites
1414
- Azure account with an active subscription, for details see [Create an account for free.](https://azure.microsoft.com/free/)
15-
- Azure Communication Services resource. See [Create an Azure Communication Services resource](../../../quickstarts/create-communication-resource.md?tabs=windows&pivots=platform-azp). Save the connection string for this resource.
16-
- An app with voice and video calling, refer to our [Voice](../../quickstarts/voice-video-calling/getting-started-with-calling.md) and [Video](../../quickstarts/voice-video-calling/get-started-with-video-calling.md) calling quickstarts.
17-
- [Access tokens](../../quickstarts/manage-teams-identity.md) for Microsoft 365 users.
18-
- [Access tokens](../../quickstarts/identity/access-tokens.md) for External identity users.
19-
- For Translated captions you will need to have a [Teams premium](/MicrosoftTeams/teams-add-on-licensing/licensing-enhance-teams#meetings) license.
15+
- Azure Communication Services resource. See [Create an Azure Communication Services resource](../../../../quickstarts/create-communication-resource.md?tabs=windows&pivots=platform-azp). Save the connection string for this resource.
16+
- An app with voice and video calling, refer to our [Voice](../../../../quickstarts/voice-video-calling/getting-started-with-calling.md) and [Video](../../../../quickstarts/voice-video-calling/get-started-with-video-calling.md) calling quickstarts.
17+
- [Access tokens](../../../quickstarts/manage-teams-identity.md) for Microsoft 365 users.
18+
- [Access tokens](../../../quickstarts/identity/access-tokens.md) for External identity users.
19+
- For Translated captions, you need to have a [Teams premium](/MicrosoftTeams/teams-add-on-licensing/licensing-enhance-teams#meetings) license.
2020

2121
>[!NOTE]
2222
>Please note that you will need to have a voice calling app using ACS calling SDKs to access the closed captions feature that is described in this guide.
@@ -69,7 +69,7 @@ teamsCaptions.on('captionsReceived', captionsReceivedHandler);
6969

7070
## Start captions
7171

72-
Once you've got all your listeners setup you can now start captions.
72+
Once you've got all your listeners setup, you can now start captions.
7373

7474
``` typescript
7575
try {
@@ -100,7 +100,7 @@ teamsCaptions.off('captionsReceived', captionsReceivedHandler);
100100
### Get a list of supported spoken languages
101101

102102
Get a list of supported spoken languages that your users can select from when enabling closed captions.
103-
The property will return an array of langauges in bcp 47 format.
103+
The property returns an array of languages in bcp 47 format.
104104

105105
``` typescript
106106
const spokenLanguages = teamsCaptions.supportedSpokenLanguages;
@@ -128,9 +128,9 @@ try {
128128

129129
### Get a list of supported caption languages
130130

131-
If your organization has an active Teams premium license you can allow your users to leverage translated captions provided by Teams captions. As for users with a Microsoft 365 identity, if the meeting organizer does not have an active Teams premium license, captions language check will be done against the Microsoft 365 users account.
131+
If your organization has an active Teams premium license, you can allow your users to use translated captions provided by Teams captions. As for users with a Microsoft 365 identity, if the meeting organizer doesn't have an active Teams premium license, captions language check is done against the Microsoft 365 users account.
132132

133-
The property returns an array of two-letter langauge codes in `ISO 639-1` standard.
133+
The property returns an array of two-letter language codes in `ISO 639-1` standard.
134134

135135
``` typescript
136136
const captionLanguages = teamsCaptions.supportedCaptionLanguages;

0 commit comments

Comments
 (0)