-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
allow choosing the region when configuring the Microsoft Speech API a…
…ccount
- Loading branch information
Showing
10 changed files
with
201 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
using System.Runtime.Serialization; | ||
|
||
namespace Translator.Models | ||
{ | ||
[DataContract] | ||
public class SpeechServiceRegion | ||
{ | ||
[DataMember(Name = "id")] | ||
public string Id { get; set; } | ||
|
||
[DataMember(Name = "name")] | ||
public string Name { get; set; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,122 @@ | ||
[ | ||
{ | ||
"id": "australiaeast", | ||
"name": "Australia East" | ||
}, | ||
{ | ||
"id": "brazilsouth", | ||
"name": "Brazil South" | ||
}, | ||
{ | ||
"id": "canadacentral", | ||
"name": "Canada Central" | ||
}, | ||
{ | ||
"id": "centralindia", | ||
"name": "Central India" | ||
}, | ||
{ | ||
"id": "centralus", | ||
"name": "Central US" | ||
}, | ||
{ | ||
"id": "eastasia", | ||
"name": "East Asia" | ||
}, | ||
{ | ||
"id": "eastus", | ||
"name": "East US" | ||
}, | ||
{ | ||
"id": "eastus2", | ||
"name": "East US 2" | ||
}, | ||
{ | ||
"id": "francecentral", | ||
"name": "France Central" | ||
}, | ||
{ | ||
"id": "germanywestcentral", | ||
"name": "Germany West Central" | ||
}, | ||
{ | ||
"id": "japaneast", | ||
"name": "Japan East" | ||
}, | ||
{ | ||
"id": "japanwest", | ||
"name": "Japan West" | ||
}, | ||
{ | ||
"id": "koreacentral", | ||
"name": "Korea Central" | ||
}, | ||
{ | ||
"id": "northcentralus", | ||
"name": "North Central US" | ||
}, | ||
{ | ||
"id": "northeurope", | ||
"name": "North Europe" | ||
}, | ||
{ | ||
"id": "norwayeast", | ||
"name": "Norway East" | ||
}, | ||
{ | ||
"id": "qatarcentral", | ||
"name": "Qatar Central" | ||
}, | ||
{ | ||
"id": "southafricanorth", | ||
"name": "South Africa North" | ||
}, | ||
{ | ||
"id": "southcentralus", | ||
"name": "South Central US" | ||
}, | ||
{ | ||
"id": "southeastasia", | ||
"name": "Southeast Asia" | ||
}, | ||
{ | ||
"id": "swedencentral", | ||
"name": "Sweden Central" | ||
}, | ||
{ | ||
"id": "switzerlandnorth", | ||
"name": "Switzerland North" | ||
}, | ||
{ | ||
"id": "switzerlandwest", | ||
"name": "Switzerland West" | ||
}, | ||
{ | ||
"id": "uaenorth", | ||
"name": "UAE North" | ||
}, | ||
{ | ||
"id": "uksouth", | ||
"name": "UK South" | ||
}, | ||
{ | ||
"id": "westcentralus", | ||
"name": "West Central US" | ||
}, | ||
{ | ||
"id": "westeurope", | ||
"name": "West Europe" | ||
}, | ||
{ | ||
"id": "westus", | ||
"name": "West US" | ||
}, | ||
{ | ||
"id": "westus2", | ||
"name": "West US 2" | ||
}, | ||
{ | ||
"id": "westus3", | ||
"name": "West US 3" | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters