From ed6dc7b6b38890e9cbca22561a71b3723902bf6b Mon Sep 17 00:00:00 2001 From: Ladislau Szomoru <3372902+lszomoru@users.noreply.github.com> Date: Fri, 24 Nov 2023 09:41:44 +0100 Subject: [PATCH] Git - fix command titles (#198996) --- extensions/git/package.json | 4 ++-- extensions/git/package.nls.json | 2 ++ 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/extensions/git/package.json b/extensions/git/package.json index 5b0333b9e7a..4c55452a864 100644 --- a/extensions/git/package.json +++ b/extensions/git/package.json @@ -763,13 +763,13 @@ }, { "command": "git.viewChanges", - "title": "View Changes", + "title": "%command.viewChanges%", "icon": "$(tasklist)", "category": "Git" }, { "command": "git.viewStagedChanges", - "title": "View Staged Changes", + "title": "%command.viewStagedChanges%", "icon": "$(tasklist)", "category": "Git" } diff --git a/extensions/git/package.nls.json b/extensions/git/package.nls.json index 5f454ae4008..f98527cb5d6 100644 --- a/extensions/git/package.nls.json +++ b/extensions/git/package.nls.json @@ -111,6 +111,8 @@ "command.timelineCompareWithSelected": "Compare with Selected", "command.manageUnsafeRepositories": "Manage Unsafe Repositories", "command.openRepositoriesInParentFolders": "Open Repositories In Parent Folders", + "command.viewChanges": "View Changes", + "command.viewStagedChanges": "View Staged Changes", "command.api.getRepositories": "Get Repositories", "command.api.getRepositoryState": "Get Repository State", "command.api.getRemoteSources": "Get Remote Sources",