Skip to content

Commit 01ff455

Browse files
authored
fine tune new profile message (microsoft#187646)
1 parent 4aa165c commit 01ff455

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/vs/workbench/contrib/userDataProfile/browser/userDataProfile.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -510,7 +510,7 @@ export class UserDataProfilesWorkbenchContribution extends Disposable implements
510510
quickPick.hideCheckAll = true;
511511
quickPick.ignoreFocusOut = true;
512512
quickPick.customLabel = localize('create', "Create Profile");
513-
quickPick.description = localize('customise the profile', "Choose the customizations you want to include in the new profile.");
513+
quickPick.description = localize('customise the profile', "Choose the data that should be scoped to the new profile.");
514514

515515
const disposables = new DisposableStore();
516516
const update = () => {
@@ -523,7 +523,7 @@ export class UserDataProfilesWorkbenchContribution extends Disposable implements
523523
let needUpdate = false;
524524
for (const resource of resources) {
525525
resource.picked = items.includes(resource);
526-
const description = resource.picked ? undefined : localize('use default profile', "Use Default Profile");
526+
const description = resource.picked ? undefined : localize('use default profile', "From Default Profile");
527527
if (resource.description !== description) {
528528
resource.description = description;
529529
needUpdate = true;

0 commit comments

Comments
 (0)