GitHub - 💄 extract command strings (#237899)

This commit is contained in:
Ladislau Szomoru
2025-01-14 15:33:56 +01:00
committed by GitHub
parent 924d7a84bf
commit 4cdae9cc06
2 changed files with 10 additions and 6 deletions

View File

@@ -38,28 +38,28 @@
"commands": [
{
"command": "github.publish",
"title": "Publish to GitHub"
"title": "%command.publish%"
},
{
"command": "github.copyVscodeDevLink",
"title": "Copy vscode.dev Link"
"title": "%command.copyVscodeDevLink%"
},
{
"command": "github.copyVscodeDevLinkFile",
"title": "Copy vscode.dev Link"
"title": "%command.copyVscodeDevLink%"
},
{
"command": "github.copyVscodeDevLinkWithoutRange",
"title": "Copy vscode.dev Link"
"title": "%command.copyVscodeDevLink%"
},
{
"command": "github.openOnVscodeDev",
"title": "Open in vscode.dev",
"title": "%command.openOnVscodeDev%",
"icon": "$(globe)"
},
{
"command": "github.graph.openOnGitHub",
"title": "Open on GitHub",
"title": "%command.openOnGitHub%",
"icon": "$(github)"
}
],

View File

@@ -1,6 +1,10 @@
{
"displayName": "GitHub",
"description": "GitHub features for VS Code",
"command.copyVscodeDevLink": "Copy vscode.dev Link",
"command.publish": "Publish to GitHub",
"command.openOnGitHub": "Open on GitHub",
"command.openOnVscodeDev": "Open in vscode.dev",
"config.branchProtection": "Controls whether to query repository rules for GitHub repositories",
"config.gitAuthentication": "Controls whether to enable automatic GitHub authentication for git commands within VS Code.",
"config.gitProtocol": "Controls which protocol is used to clone a GitHub repository",