mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 18:46:40 -05:00
added localization for profiler (#16941)
This commit is contained in:
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "profiler",
|
"name": "profiler",
|
||||||
"displayName": "SQL Server Profiler",
|
"displayName": "%displayName%",
|
||||||
"description": "SQL Server Profiler for Azure Data Studio",
|
"description": "%description%",
|
||||||
"version": "0.12.0",
|
"version": "0.12.0",
|
||||||
"publisher": "Microsoft",
|
"publisher": "Microsoft",
|
||||||
"preview": true,
|
"preview": true,
|
||||||
@@ -29,23 +29,23 @@
|
|||||||
"commands": [
|
"commands": [
|
||||||
{
|
{
|
||||||
"command": "profiler.newProfiler",
|
"command": "profiler.newProfiler",
|
||||||
"title": "Launch Profiler",
|
"title": "%profiler.contributes.title.newProfler%",
|
||||||
"category": "Profiler"
|
"category": "%profiler.category%"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"command": "profiler.start",
|
"command": "profiler.start",
|
||||||
"title": "Start",
|
"title": "profiler.contributes.title.start",
|
||||||
"category": "Profiler"
|
"category": "%profiler.category%"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"command": "profiler.stop",
|
"command": "profiler.stop",
|
||||||
"title": "Stop",
|
"title": "profiler.contributes.title.stop",
|
||||||
"category": "Profiler"
|
"category": "%profiler.category%"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"command": "profiler.openCreateSessionDialog",
|
"command": "profiler.openCreateSessionDialog",
|
||||||
"title": "Create Profiler Session",
|
"title": "profiler.contributes.title.openCreateSessionDialog",
|
||||||
"category": "Profiler"
|
"category": "%profiler.category%"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"menus": {
|
"menus": {
|
||||||
|
|||||||
9
extensions/profiler/package.nls.json
Normal file
9
extensions/profiler/package.nls.json
Normal 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"
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user