Skip to content

Commit 24340e2

Browse files
authored
Tweak Continue On placeholder (microsoft#166152)
1 parent f8995e0 commit 24340e2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vs/workbench/contrib/editSessions/browser/editSessions.contribution.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -758,7 +758,7 @@ export class EditSessionsContribution extends Disposable implements IWorkbenchCo
758758
const workspaceContext = this.contextService.getWorkbenchState() === WorkbenchState.FOLDER
759759
? this.contextService.getWorkspace().folders[0].name
760760
: this.contextService.getWorkspace().folders.map((folder) => folder.name).join(', ');
761-
quickPick.placeholder = localize('continueEditSessionPick.title', "Select option to continue {0} on", `'${workspaceContext}'`);
761+
quickPick.placeholder = localize('continueEditSessionPick.title.v2', "Select a development environment to continue working on {0} in", `'${workspaceContext}'`);
762762
quickPick.items = this.createPickItems();
763763

764764
const command = await new Promise<string | undefined>((resolve, reject) => {

0 commit comments

Comments
 (0)