mirror of
https://github.com/microsoft/vscode.git
synced 2026-07-09 08:15:05 +01:00
Merge pull request #162844 from laurentlb/comment_css
Update column names in 'Feature Contributions'
This commit is contained in:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user