Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/microsoft/vscode.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src/vs
diff options
context:
space:
mode:
authorTyler James Leonhardt <me@tylerleonhardt.com>2022-07-28 21:48:33 +0300
committerGitHub <noreply@github.com>2022-07-28 21:48:33 +0300
commit35a17f42e89ee15966dbe805d5faed63ec9b34c1 (patch)
tree362957607bcaea0632eb480e318bbd5b3b570c24 /src/vs
parent33a08dc6f4386aaa7067575dc8929183df080ae2 (diff)
fix another command to use ILocalizedString (#156615)
Diffstat (limited to 'src/vs')
-rw-r--r--src/vs/workbench/contrib/testing/browser/testExplorerActions.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vs/workbench/contrib/testing/browser/testExplorerActions.ts b/src/vs/workbench/contrib/testing/browser/testExplorerActions.ts
index 556f7f4e65d..53579678c41 100644
--- a/src/vs/workbench/contrib/testing/browser/testExplorerActions.ts
+++ b/src/vs/workbench/contrib/testing/browser/testExplorerActions.ts
@@ -249,7 +249,7 @@ export class ConfigureTestProfilesAction extends Action2 {
constructor() {
super({
id: TestCommandId.ConfigureTestProfilesAction,
- title: localize('testing.configureProfile', 'Configure Test Profiles'),
+ title: { value: localize('testing.configureProfile', 'Configure Test Profiles'), original: 'Configure Test Profiles' },
icon: icons.testingUpdateProfiles,
f1: true,
category,