Skip to content

Commit 96ad32a

Browse files
fix wording to meet acrolynx score
1 parent 1acd051 commit 96ad32a

File tree

3 files changed

+15
-15
lines changed

3 files changed

+15
-15
lines changed

articles/communication-services/quickstarts/telephony/includes/emergency-calling-android.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,17 +14,17 @@ ms.author: zehangzheng
1414
## Important considerations
1515
- The capability to dial an emergency number and receive a call-back may be a requirement for your application. Verify the emergency calling requirements with your legal counsel.
1616
- Microsoft uses country codes according to ISO 3166-1 alpha-2 standard
17-
- If the country ISO code is not provided to the SDK, the IP address will be used to determine the country of the caller.
18-
- In case IP address cannot provide reliable geolocation, for example the user is on a Virtual Private Network, it is required to set the ISO Code of the calling country using the API in the Azure Communication Services Calling SDK.
19-
- If users are dialing from a US territory (for example Guam, US Virgin Islands, Northern Marianas, or American Samoa), it is required to set the ISO code to the US
17+
- If the country ISO code isn't provided to the SDK, the IP address will be used to determine the country of the caller.
18+
- In case IP address can't provide reliable geolocation, for example, the user is on a Virtual Private Network, it's required to set the ISO Code of the calling country using the API in the Azure Communication Services Calling SDK.
19+
- If users are dialing from a US territory (for example Guam, US Virgin Islands, Northern Marianas, or American Samoa), it's required to set the ISO code to the US
2020
- Supported ISO codes are US, PR, CA, and GB only
2121
- Azure Communication Services direct routing is currently in public preview and not intended for production workloads. So emergency dialing is out of scope for Azure Communication Services direct routing.
2222
- The emergency calling service is temporarily free to use for Azure Communication Services customers within reasonable use, however billing for the service will be enabled in the future.
2323
- Calls to an emergency number are capped at 10 concurrent calls per Azure Resource.
2424

2525

2626
## Setting up
27-
Replace the code in **app/src/main/res/layout/activity_main.xml** with following snippet. It will add a new button for testing emergency calls.
27+
Replace the code in **app/src/main/res/layout/activity_main.xml** with following snippet. It adds a new button for testing emergency calls.
2828

2929
```xml
3030
<?xml version="1.0" encoding="utf-8"?>
@@ -72,7 +72,7 @@ Replace the code in **app/src/main/res/layout/activity_main.xml** with following
7272
</androidx.constraintlayout.widget.ConstraintLayout>
7373
```
7474
## Emergency test call to phone
75-
Specify the ISO code of the country where the caller is located. If the ISO code is not provided, the IP address will be used to determine the callers location. Microsoft uses the ISO 3166-1 alpha-2 standard for country ISO codes, supported ISO codes are listed on the concept page for emergency calling.
75+
Specify the ISO code of the country where the caller is located. If the ISO code isn't provided, the IP address will be used to determine the callers location. Microsoft uses the ISO 3166-1 alpha-2 standard for country ISO codes, supported ISO codes are listed on the concept page for emergency calling.
7676

7777
In your **MainActivity.java**, add the following code to your `onCreate` method to retrieve the emergency button you've created in `activity_main.xml`.
7878

articles/communication-services/quickstarts/telephony/includes/emergency-calling-ios.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,17 +14,17 @@ ms.author: zehangzheng
1414
## Important considerations
1515
- The capability to dial an emergency number and receive a call-back may be a requirement for your application. Verify the emergency calling requirements with your legal counsel.
1616
- Microsoft uses country codes according to ISO 3166-1 alpha-2 standard
17-
- If the country ISO code is not provided to the SDK, the IP address will be used to determine the country of the caller.
18-
- In case IP address cannot provide reliable geolocation, for example the user is on a Virtual Private Network, it is required to set the ISO Code of the calling country using the API in the Azure Communication Services Calling SDK.
19-
- If users are dialing from a US territory (for example Guam, US Virgin Islands, Northern Marianas, or American Samoa), it is required to set the ISO code to the US
17+
- If the country ISO code isn't provided to the SDK, the IP address will be used to determine the country of the caller.
18+
- In case IP address can't provide reliable geolocation, for example, the user is on a Virtual Private Network, it's required to set the ISO Code of the calling country using the API in the Azure Communication Services Calling SDK.
19+
- If users are dialing from a US territory (for example Guam, US Virgin Islands, Northern Marianas, or American Samoa), it's required to set the ISO code to the US
2020
- Supported ISO codes are US, PR, CA, and GB only
2121
- Azure Communication Services direct routing is currently in public preview and not intended for production workloads. So emergency dialing is out of scope for Azure Communication Services direct routing.
2222
- The emergency calling service is temporarily free to use for Azure Communication Services customers within reasonable use, however billing for the service will be enabled in the future.
2323
- Calls to an emergency number are capped at 10 concurrent calls per Azure Resource.
2424

2525

2626
## Setting up
27-
Replace the code for `NavigationView` in your **ContentView.swift** with following snippet. It will add a new button for testing emergency calls.
27+
Replace the code for `NavigationView` in your **ContentView.swift** with following snippet. It adds a new button for testing emergency calls.
2828

2929
```swift
3030
NavigationView {
@@ -48,7 +48,7 @@ NavigationView {
4848
}
4949
```
5050
## Emergency test call to phone
51-
Specify the ISO code of the country where the caller is located. If the ISO code is not provided, the IP address will be used to determine the callers location. Microsoft uses the ISO 3166-1 alpha-2 standard for country ISO codes, supported ISO codes are listed on the concept page for emergency calling.
51+
Specify the ISO code of the country where the caller is located. If the ISO code isn't provided, the IP address will be used to determine the callers location. Microsoft uses the ISO 3166-1 alpha-2 standard for country ISO codes, supported ISO codes are listed on the concept page for emergency calling.
5252

5353
In your **ContentView.swift**, replace your code with the following snippet in your `NavigationView`'s `onAppear` method to specify the emergency country:
5454

articles/communication-services/quickstarts/telephony/includes/emergency-calling-javascript.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,17 +14,17 @@ ms.author: zehangzheng
1414
## Important considerations
1515
- The capability to dial an emergency number and receive a call-back may be a requirement for your application. Verify the emergency calling requirements with your legal counsel.
1616
- Microsoft uses country codes according to ISO 3166-1 alpha-2 standard
17-
- If the country ISO code is not provided to the SDK, the IP address will be used to determine the country of the caller.
18-
- In case IP address cannot provide reliable geolocation, for example the user is on a Virtual Private Network, it is required to set the ISO Code of the calling country using the API in the Azure Communication Services Calling SDK.
19-
- If users are dialing from a US territory (for example Guam, US Virgin Islands, Northern Marianas, or American Samoa), it is required to set the ISO code to the US
17+
- If the country ISO code isn't provided to the SDK, the IP address will be used to determine the country of the caller.
18+
- In case IP address can't provide reliable geolocation, for example, the user is on a Virtual Private Network, it's required to set the ISO Code of the calling country using the API in the Azure Communication Services Calling SDK.
19+
- If users are dialing from a US territory (for example Guam, US Virgin Islands, Northern Marianas, or American Samoa), it's required to set the ISO code to the US
2020
- Supported ISO codes are US, PR, CA, and GB only
2121
- Azure Communication Services direct routing is currently in public preview and not intended for production workloads. So emergency dialing is out of scope for Azure Communication Services direct routing.
2222
- The emergency calling service is temporarily free to use for Azure Communication Services customers within reasonable use, however billing for the service will be enabled in the future.
2323
- Calls to an emergency number are capped at 10 concurrent calls per Azure Resource.
2424

2525

2626
## Setting up
27-
Replace the code in **index.html** with following snippet. It will add a new button for testing emergency calls.
27+
Replace the code in **index.html** with following snippet. It adds a new button for testing emergency calls.
2828

2929
```html
3030
<!DOCTYPE html>
@@ -58,7 +58,7 @@ Replace the code in **index.html** with following snippet. It will add a new but
5858
</html>
5959
```
6060
## Emergency test call to phone
61-
Specify the ISO code of the country where the caller is located. If the ISO code is not provided, the IP address will be used to determine the callers location. Microsoft uses the ISO 3166-1 alpha-2 standard for country ISO codes, supported ISO codes are listed on the concept page for emergency calling.
61+
Specify the ISO code of the country where the caller is located. If the ISO code isn't provided, the IP address will be used to determine the callers location. Microsoft uses the ISO 3166-1 alpha-2 standard for country ISO codes, supported ISO codes are listed on the concept page for emergency calling.
6262

6363
In your **client.js**, add the following code to retrieve the emergency button you've created in index.html.
6464

0 commit comments

Comments
 (0)