Skip to content

Commit f92df53

Browse files
authored
1 parent 3c05482 commit f92df53

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -493,10 +493,10 @@ export class UserDataProfilesWorkbenchContribution extends Disposable implements
493493
const userDataProfileImportExportService = accessor.get(IUserDataProfileImportExportService);
494494
const quickPickItems: QuickPickItem[] = [{
495495
id: CREATE_EMPTY_PROFILE_ACTION_ID,
496-
label: CREATE_EMPTY_PROFILE_ACTION_TITLE.value,
496+
label: localize('empty', "Empty Profile"),
497497
}, {
498498
id: CREATE_FROM_CURRENT_PROFILE_ACTION_ID,
499-
label: CREATE_FROM_CURRENT_PROFILE_ACTION_TITLE.value,
499+
label: localize('using current', "Using Current Profile"),
500500
}];
501501
const profileTemplateQuickPickItems = await that.getProfileTemplatesQuickPickItems();
502502
if (profileTemplateQuickPickItems.length) {
@@ -509,7 +509,7 @@ export class UserDataProfilesWorkbenchContribution extends Disposable implements
509509
{
510510
hideInput: true,
511511
canPickMany: false,
512-
title: localize('create profile title', "{0}: Create...", PROFILES_CATEGORY.value)
512+
title: localize('create profile title', "Create Profile...")
513513
});
514514
if (pick) {
515515
if (pick.id) {
@@ -613,7 +613,7 @@ export class UserDataProfilesWorkbenchContribution extends Disposable implements
613613
{
614614
hideInput: true,
615615
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)
617617
});
618618
if ((<IProfileTemplateQuickPickItem>pick)?.url) {
619619
const uri = URI.parse((<IProfileTemplateQuickPickItem>pick).url);
@@ -649,7 +649,7 @@ export class UserDataProfilesWorkbenchContribution extends Disposable implements
649649
const profileTemplates = await this.getProfileTemplatesFromProduct();
650650
for (const template of profileTemplates) {
651651
quickPickItems.push({
652-
label: localize('create from template', "Create {0} Profile...", template.name),
652+
label: template.name,
653653
...template
654654
});
655655
}

0 commit comments

Comments
 (0)