diff --git a/src/vs/workbench/contrib/extensions/browser/extensionEditor.ts b/src/vs/workbench/contrib/extensions/browser/extensionEditor.ts index 65d0cc03d7e..ba6774dd3f9 100644 --- a/src/vs/workbench/contrib/extensions/browser/extensionEditor.ts +++ b/src/vs/workbench/contrib/extensions/browser/extensionEditor.ts @@ -1197,7 +1197,7 @@ export class ExtensionEditor extends EditorPane { $('summary', { tabindex: '0' }, localize('settings', "Settings ({0})", contrib.length)), $('table', undefined, $('tr', undefined, - $('th', undefined, localize('setting name', "Name")), + $('th', undefined, localize('setting name', "ID")), $('th', undefined, localize('description', "Description")), $('th', undefined, localize('default', "Default")) ), @@ -1378,7 +1378,7 @@ export class ExtensionEditor extends EditorPane { $('table', undefined, $('tr', undefined, $('th', undefined, localize('authentication.label', "Label")), - $('th', undefined, localize('authentication.id', "Id")) + $('th', undefined, localize('authentication.id', "ID")) ), ...authentication.map(action => $('tr', undefined, @@ -1460,7 +1460,7 @@ export class ExtensionEditor extends EditorPane { $('summary', { tabindex: '0' }, localize('colors', "Colors ({0})", colors.length)), $('table', undefined, $('tr', undefined, - $('th', undefined, localize('colorId', "Id")), + $('th', undefined, localize('colorId', "ID")), $('th', undefined, localize('description', "Description")), $('th', undefined, localize('defaultDark', "Dark Default")), $('th', undefined, localize('defaultLight', "Light Default")), @@ -1566,8 +1566,8 @@ export class ExtensionEditor extends EditorPane { $('summary', { tabindex: '0' }, localize('commands', "Commands ({0})", commands.length)), $('table', undefined, $('tr', undefined, - $('th', undefined, localize('command name', "Name")), - $('th', undefined, localize('description', "Description")), + $('th', undefined, localize('command name', "ID")), + $('th', undefined, localize('command title', "Title")), $('th', undefined, localize('keyboard shortcuts', "Keyboard Shortcuts")), $('th', undefined, localize('menuContexts', "Menu Contexts")) ), @@ -1677,7 +1677,7 @@ export class ExtensionEditor extends EditorPane { $('summary', { tabindex: '0' }, localize('Notebooks', "Notebooks ({0})", contrib.length)), $('table', undefined, $('tr', undefined, - $('th', undefined, localize('Notebook id', "Id")), + $('th', undefined, localize('Notebook id', "ID")), $('th', undefined, localize('Notebook name', "Name")), ), ...contrib.map(d => $('tr', undefined,