added localization for profiler (#16941)

This commit is contained in:
Alex Ma
2021-08-30 19:18:56 -07:00
committed by GitHub
parent 33273fe2f8
commit 2a5aa1735d
2 changed files with 19 additions and 10 deletions

View File

@@ -1,7 +1,7 @@
{
"name": "profiler",
"displayName": "SQL Server Profiler",
"description": "SQL Server Profiler for Azure Data Studio",
"displayName": "%displayName%",
"description": "%description%",
"version": "0.12.0",
"publisher": "Microsoft",
"preview": true,
@@ -29,23 +29,23 @@
"commands": [
{
"command": "profiler.newProfiler",
"title": "Launch Profiler",
"category": "Profiler"
"title": "%profiler.contributes.title.newProfler%",
"category": "%profiler.category%"
},
{
"command": "profiler.start",
"title": "Start",
"category": "Profiler"
"title": "profiler.contributes.title.start",
"category": "%profiler.category%"
},
{
"command": "profiler.stop",
"title": "Stop",
"category": "Profiler"
"title": "profiler.contributes.title.stop",
"category": "%profiler.category%"
},
{
"command": "profiler.openCreateSessionDialog",
"title": "Create Profiler Session",
"category": "Profiler"
"title": "profiler.contributes.title.openCreateSessionDialog",
"category": "%profiler.category%"
}
],
"menus": {

View File

@@ -0,0 +1,9 @@
{
"displayName": "SQL Server Profiler",
"description": "SQL Server Profiler for Azure Data Studio",
"profiler.contributes.title.newProfler": "Launch Profiler",
"profiler.contributes.title.start": "Start",
"profiler.contributes.title.stop": "Stop",
"profiler.contributes.title.openCreateSessionDialog": "Create Profiler Season",
"profiler.category": "Profiler"
}