Added localization for title and category for dacpac (#16811)

* added localization for title and category for dacpac

* changed package.nls.json to DacFx

* update for xlf
This commit is contained in:
Alex Ma
2021-08-19 10:11:06 -07:00
committed by GitHub
parent b81d4b16d4
commit b7fffc31a5
3 changed files with 10 additions and 2 deletions

View File

@@ -38,8 +38,8 @@
"commands": [
{
"command": "dacFx.start",
"title": "Data-tier Application wizard",
"category": "Data-tier Application"
"title": "%dacFx.startTitle%",
"category": "%dacFx.category%"
}
],
"menus": {

View File

@@ -1,4 +1,6 @@
{
"dacFx.settings": "Dacpac",
"dacFx.startTitle": "Data-tier Application Wizard",
"dacFx.category": "DacFx",
"dacFx.defaultSaveLocation": "Full path to folder where .DACPAC and .BACPAC files are saved by default"
}

View File

@@ -4,6 +4,12 @@
<trans-unit id="dacFx.settings">
<source xml:lang="en">Dacpac</source>
</trans-unit>
<trans-unit id="dacFx.startTitle">
<source xml:lang="en">Data-tier Application Wizard</source>
</trans-unit>
<trans-unit id="dacFx.category">
<source xml:lang="en">DacFx</source>
</trans-unit>
<trans-unit id="dacFx.defaultSaveLocation">
<source xml:lang="en">Full path to folder where .DACPAC and .BACPAC files are saved by default</source>
</trans-unit>