From 01ff455e8cd53bd2d2a228a40c902bf60fdccda7 Mon Sep 17 00:00:00 2001 From: Sandeep Somavarapu Date: Wed, 12 Jul 2023 00:37:00 +0200 Subject: [PATCH] fine tune new profile message (#187646) --- .../contrib/userDataProfile/browser/userDataProfile.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/vs/workbench/contrib/userDataProfile/browser/userDataProfile.ts b/src/vs/workbench/contrib/userDataProfile/browser/userDataProfile.ts index 1e49cf39e49..ec4a10c8f33 100644 --- a/src/vs/workbench/contrib/userDataProfile/browser/userDataProfile.ts +++ b/src/vs/workbench/contrib/userDataProfile/browser/userDataProfile.ts @@ -510,7 +510,7 @@ export class UserDataProfilesWorkbenchContribution extends Disposable implements quickPick.hideCheckAll = true; quickPick.ignoreFocusOut = true; quickPick.customLabel = localize('create', "Create Profile"); - quickPick.description = localize('customise the profile', "Choose the customizations you want to include in the new profile."); + quickPick.description = localize('customise the profile', "Choose the data that should be scoped to the new profile."); const disposables = new DisposableStore(); const update = () => { @@ -523,7 +523,7 @@ export class UserDataProfilesWorkbenchContribution extends Disposable implements let needUpdate = false; for (const resource of resources) { resource.picked = items.includes(resource); - const description = resource.picked ? undefined : localize('use default profile', "Use Default Profile"); + const description = resource.picked ? undefined : localize('use default profile', "From Default Profile"); if (resource.description !== description) { resource.description = description; needUpdate = true;