@@ -493,10 +493,10 @@ export class UserDataProfilesWorkbenchContribution extends Disposable implements
493
493
const userDataProfileImportExportService = accessor . get ( IUserDataProfileImportExportService ) ;
494
494
const quickPickItems : QuickPickItem [ ] = [ {
495
495
id : CREATE_EMPTY_PROFILE_ACTION_ID ,
496
- label : CREATE_EMPTY_PROFILE_ACTION_TITLE . value ,
496
+ label : localize ( 'empty' , "Empty Profile" ) ,
497
497
} , {
498
498
id : CREATE_FROM_CURRENT_PROFILE_ACTION_ID ,
499
- label : CREATE_FROM_CURRENT_PROFILE_ACTION_TITLE . value ,
499
+ label : localize ( 'using current' , "Using Current Profile" ) ,
500
500
} ] ;
501
501
const profileTemplateQuickPickItems = await that . getProfileTemplatesQuickPickItems ( ) ;
502
502
if ( profileTemplateQuickPickItems . length ) {
@@ -509,7 +509,7 @@ export class UserDataProfilesWorkbenchContribution extends Disposable implements
509
509
{
510
510
hideInput : true ,
511
511
canPickMany : false ,
512
- title : localize ( 'create profile title' , "{0}: Create..." , PROFILES_CATEGORY . value )
512
+ title : localize ( 'create profile title' , "Create Profile ..." )
513
513
} ) ;
514
514
if ( pick ) {
515
515
if ( pick . id ) {
@@ -613,7 +613,7 @@ export class UserDataProfilesWorkbenchContribution extends Disposable implements
613
613
{
614
614
hideInput : true ,
615
615
canPickMany : false ,
616
- title : localize ( 'create profile title' , "{0}: Create..." , PROFILES_CATEGORY . value )
616
+ title : localize ( 'create profile from template title' , "{0}: Create..." , PROFILES_CATEGORY . value )
617
617
} ) ;
618
618
if ( ( < IProfileTemplateQuickPickItem > pick ) ?. url ) {
619
619
const uri = URI . parse ( ( < IProfileTemplateQuickPickItem > pick ) . url ) ;
@@ -649,7 +649,7 @@ export class UserDataProfilesWorkbenchContribution extends Disposable implements
649
649
const profileTemplates = await this . getProfileTemplatesFromProduct ( ) ;
650
650
for ( const template of profileTemplates ) {
651
651
quickPickItems . push ( {
652
- label : localize ( 'create from template' , "Create {0} Profile..." , template . name ) ,
652
+ label : template . name ,
653
653
...template
654
654
} ) ;
655
655
}
0 commit comments