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
510
510
quickPick . hideCheckAll = true ;
511
511
quickPick . ignoreFocusOut = true ;
512
512
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." ) ;
514
514
515
515
const disposables = new DisposableStore ( ) ;
516
516
const update = ( ) => {
@@ -523,7 +523,7 @@ export class UserDataProfilesWorkbenchContribution extends Disposable implements
523
523
let needUpdate = false ;
524
524
for ( const resource of resources ) {
525
525
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" ) ;
527
527
if ( resource . description !== description ) {
528
528
resource . description = description ;
529
529
needUpdate = true ;
You can’t perform that action at this time.
0 commit comments