Add ... suffix to new with profile actions

Fixes #208655
This commit is contained in:
Daniel Imms 2024-03-29 06:26:52 -07:00
parent 960217faf7
commit d03962b0ad
No known key found for this signature in database
GPG key ID: E5CF412B63651C69
2 changed files with 2 additions and 2 deletions

View file

@ -293,7 +293,7 @@ export function setupTerminalMenus(): void {
item: {
command: {
id: TerminalCommandId.NewWithProfile,
title: localize('workbench.action.terminal.newWithProfile.short', "New Terminal With Profile")
title: localize('workbench.action.terminal.newWithProfile.short', "New Terminal With Profile...")
},
group: ContextMenuGroup.Create
}

View file

@ -74,7 +74,7 @@ export class TerminalQuickAccessProvider extends PickerQuickAccessProvider<IPick
ariaLabel: createTerminalLabel,
accept: () => this._commandService.executeCommand(TerminalCommandId.New)
});
const createWithProfileLabel = localize("workbench.action.terminal.newWithProfilePlus", "Create New Terminal With Profile");
const createWithProfileLabel = localize("workbench.action.terminal.newWithProfilePlus", "Create New Terminal With Profile...");
terminalPicks.push({
label: `$(plus) ${createWithProfileLabel}`,
ariaLabel: createWithProfileLabel,