File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/vs/workbench/contrib/userDataProfile/browser Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff 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 ;
You can’t perform that action at this time.
0 commit comments