Added localization (#17146)
* added localization * added enum descriptions
This commit is contained in:
Родитель
c194a11c24
Коммит
744570a933
|
@ -35,6 +35,18 @@
|
||||||
<trans-unit id="extension.rebuildIntelliSenseCache">
|
<trans-unit id="extension.rebuildIntelliSenseCache">
|
||||||
<source xml:lang="en">Refresh IntelliSense Cache</source>
|
<source xml:lang="en">Refresh IntelliSense Cache</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="mssql.Configuration">
|
||||||
|
<source xml:lang="en">MSSQL configuration</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="mssql.chooseAuthMethod">
|
||||||
|
<source xml:lang="en">Chooses which Authentication method to use</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="mssql.authCodeGrant.description">
|
||||||
|
<source xml:lang="en">Prompts users to sign in using their browser.</source>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="mssql.deviceCode.description">
|
||||||
|
<source xml:lang="en">Allows users to sign in to input-constrained devices.</source>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="mssql.logDebugInfo">
|
<trans-unit id="mssql.logDebugInfo">
|
||||||
<source xml:lang="en">[Optional] Log debug output to the VS Code console (Help -> Toggle Developer Tools)</source>
|
<source xml:lang="en">[Optional] Log debug output to the VS Code console (Help -> Toggle Developer Tools)</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
|
|
@ -556,16 +556,20 @@
|
||||||
],
|
],
|
||||||
"configuration": {
|
"configuration": {
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"title": "MSSQL configuration",
|
"title": "%mssql.Configuration%",
|
||||||
"properties": {
|
"properties": {
|
||||||
"mssql.azureActiveDirectory": {
|
"mssql.azureActiveDirectory": {
|
||||||
"type": "string",
|
"type": "string",
|
||||||
"default": "AuthCodeGrant",
|
"default": "AuthCodeGrant",
|
||||||
"description": "Chooses which Authentication method to use",
|
"description": "%mssql.chooseAuthMethod%",
|
||||||
"enum": [
|
"enum": [
|
||||||
"AuthCodeGrant",
|
"AuthCodeGrant",
|
||||||
"DeviceCode"
|
"DeviceCode"
|
||||||
],
|
],
|
||||||
|
"enumDescriptions": [
|
||||||
|
"%mssql.authCodeGrant.description%",
|
||||||
|
"%mssql.deviceCode.description%"
|
||||||
|
],
|
||||||
"scope": "application"
|
"scope": "application"
|
||||||
},
|
},
|
||||||
"mssql.logDebugInfo": {
|
"mssql.logDebugInfo": {
|
||||||
|
|
Загрузка…
Ссылка в новой задаче