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
diff options
context:
space:
mode:
authorJoyce Er <joyce.er@microsoft.com>2022-11-12 01:24:00 +0300
committerGitHub <noreply@github.com>2022-11-12 01:24:00 +0300
commit24340e259a934a8c877d5bdf6f0be9ab64e850d7 (patch)
tree8109e1a6b02d725c2db54638c07cbc30c5ac8327
parentf8995e0b1aae1e6cafe677eb76fbae047034a8c8 (diff)
Tweak Continue On placeholder (#166152)
-rw-r--r--src/vs/workbench/contrib/editSessions/browser/editSessions.contribution.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vs/workbench/contrib/editSessions/browser/editSessions.contribution.ts b/src/vs/workbench/contrib/editSessions/browser/editSessions.contribution.ts
index 38bfa0c565b..a1fd2b83f39 100644
--- a/src/vs/workbench/contrib/editSessions/browser/editSessions.contribution.ts
+++ b/src/vs/workbench/contrib/editSessions/browser/editSessions.contribution.ts
@@ -758,7 +758,7 @@ export class EditSessionsContribution extends Disposable implements IWorkbenchCo
const workspaceContext = this.contextService.getWorkbenchState() === WorkbenchState.FOLDER
? this.contextService.getWorkspace().folders[0].name
: this.contextService.getWorkspace().folders.map((folder) => folder.name).join(', ');
- quickPick.placeholder = localize('continueEditSessionPick.title', "Select option to continue {0} on", `'${workspaceContext}'`);
+ quickPick.placeholder = localize('continueEditSessionPick.title.v2', "Select a development environment to continue working on {0} in", `'${workspaceContext}'`);
quickPick.items = this.createPickItems();
const command = await new Promise<string | undefined>((resolve, reject) => {