Skip to content

Commit dbb3b7b

Browse files
authored
Merge pull request microsoft#209106 from microsoft/tyriar/208655
Add ... suffix to new with profile actions
2 parents 960217f + d03962b commit dbb3b7b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/vs/workbench/contrib/terminal/browser/terminalMenus.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@ export function setupTerminalMenus(): void {
293293
item: {
294294
command: {
295295
id: TerminalCommandId.NewWithProfile,
296-
title: localize('workbench.action.terminal.newWithProfile.short', "New Terminal With Profile")
296+
title: localize('workbench.action.terminal.newWithProfile.short', "New Terminal With Profile...")
297297
},
298298
group: ContextMenuGroup.Create
299299
}

src/vs/workbench/contrib/terminal/browser/terminalQuickAccess.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ export class TerminalQuickAccessProvider extends PickerQuickAccessProvider<IPick
7474
ariaLabel: createTerminalLabel,
7575
accept: () => this._commandService.executeCommand(TerminalCommandId.New)
7676
});
77-
const createWithProfileLabel = localize("workbench.action.terminal.newWithProfilePlus", "Create New Terminal With Profile");
77+
const createWithProfileLabel = localize("workbench.action.terminal.newWithProfilePlus", "Create New Terminal With Profile...");
7878
terminalPicks.push({
7979
label: `$(plus) ${createWithProfileLabel}`,
8080
ariaLabel: createWithProfileLabel,

0 commit comments

Comments
 (0)