Added localization for connection option group names (#16884)

* added azuremonitor, need to work on cms

* finished CMS, need to do Kusto and MSSQL

* Added kusto, need to finish mssql

* added some strings need to finish mssql

* finished MSSQL
This commit is contained in:
Alex Ma
2021-08-30 19:18:42 -07:00
committed by GitHub
parent 529e4fe0de
commit 33273fe2f8
8 changed files with 105 additions and 82 deletions

View File

@@ -41,7 +41,7 @@
"name": "server",
"displayName": "%azuremonitor.connectionProperties.serverName.displayName%",
"description": "%azuremonitor.connectionProperties.serverName.description%",
"groupName": "Source",
"groupName": "%azuremonitor.connectionProperties.groupName.source%",
"valueType": "string",
"defaultValue": null,
"objectType": null,
@@ -55,7 +55,7 @@
"name": "authenticationType",
"displayName": "%azuremonitor.connectionProperties.authType.displayName%",
"description": "%azuremonitor.connectionProperties.authType.description%",
"groupName": "Security",
"groupName": "%azuremonitor.connectionProperties.groupName.security%",
"valueType": "category",
"defaultValue": "AzureMFA",
"objectType": null,
@@ -74,7 +74,7 @@
"name": "connectionName",
"displayName": "%azuremonitor.connectionProperties.connectionName.displayName%",
"description": "%azuremonitor.connectionProperties.connectionName.description%",
"groupName": "Source",
"groupName": "%azuremonitor.connectionProperties.groupName.source%",
"valueType": "string",
"defaultValue": null,
"objectType": null,
@@ -88,7 +88,7 @@
"name": "user",
"displayName": "%azuremonitor.connectionProperties.userName.displayName%",
"description": "%azuremonitor.connectionProperties.userName.description%",
"groupName": "Security",
"groupName": "%azuremonitor.connectionProperties.groupName.security%",
"valueType": "string",
"defaultValue": null,
"objectType": null,
@@ -102,7 +102,7 @@
"name": "password",
"displayName": "%azuremonitor.connectionProperties.password.displayName%",
"description": "%azuremonitor.connectionProperties.password.description%",
"groupName": "Security",
"groupName": "%azuremonitor.connectionProperties.groupName.security%",
"valueType": "password",
"defaultValue": null,
"objectType": null,
@@ -116,7 +116,7 @@
"name": "database",
"displayName": "%azuremonitor.connectionOptions.databaseName.displayName%",
"description": "%azuremonitor.connectionOptions.databaseName.description%",
"groupName": "Source",
"groupName": "%azuremonitor.connectionProperties.groupName.source%",
"valueType": "string",
"defaultValue": null,
"objectType": null,

View File

@@ -27,5 +27,7 @@
"azuremonitor.connectionOptions.databaseName.description": "The name of the initial catalog or database in the data source",
"azuremonitor.connectionProperties.authType.displayName": "Authentication type",
"azuremonitor.connectionProperties.authType.description": "Specifies the method of authenticating with Azure Monitor",
"azuremonitor.connectionProperties.authType.categoryValues.azureMFA": "Azure Active Directory - Universal with MFA support"
"azuremonitor.connectionProperties.authType.categoryValues.azureMFA": "Azure Active Directory - Universal with MFA support",
"azuremonitor.connectionProperties.groupName.source": "Source",
"azuremonitor.connectionProperties.groupName.security": "Security"
}