Centralizes localized category string (#19857)

This commit is contained in:
Lewis Sanchez
2022-06-28 16:58:09 -07:00
committed by GitHub
parent b01642aec1
commit 811aa18862
3 changed files with 8 additions and 3 deletions

View File

@@ -893,3 +893,7 @@ export class ExportAsNotebookAction extends QueryTaskbarAction {
this._commandService.executeCommand('mssql.exportSqlAsNotebook', this.editor.input.uri);
}
}
export const CATEGORIES = {
ExecutionPlan: { value: nls.localize('ExecutionPlan', 'Execution Plan'), original: 'Execution Plan' }
};