Skip to content

Commit

Permalink
part of #134907
Browse files Browse the repository at this point in the history
  • Loading branch information
meganrogge committed Oct 20, 2021
1 parent e113309 commit 55c8ba9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/vs/workbench/contrib/terminal/browser/terminalMenus.ts
Original file line number Diff line number Diff line change
Expand Up @@ -487,7 +487,7 @@ export function setupTerminalMenus(): void {
item: {
command: {
id: TerminalCommandId.MoveToEditor,
title: terminalStrings.moveToEditor.short
title: terminalStrings.moveToEditor.value
},
group: ContextMenuGroup.Create,
order: 2
Expand Down Expand Up @@ -564,7 +564,7 @@ export function setupTerminalMenus(): void {
item: {
command: {
id: TerminalCommandId.MoveToEditorInstance,
title: terminalStrings.moveToEditor.short
title: terminalStrings.moveToEditor.value
},
group: ContextMenuGroup.Create,
order: 2
Expand Down Expand Up @@ -764,7 +764,7 @@ export function getTerminalActionBarArgs(location: ITerminalLocationOptions, pro
}

if (dropdownActions.length > 0) {
dropdownActions.push(new SubmenuAction('split.profile', 'Split...', submenuActions));
dropdownActions.push(new SubmenuAction('split.profile', localize('splitTerminal', 'Split Terminal'), submenuActions));
dropdownActions.push(new Separator());
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ export const terminalStrings = {
moveToEditor: {
value: localize('moveToEditor', "Move Terminal into Editor Area"),
original: 'Move Terminal into Editor Area',
short: localize('moveToEditorShort', "Move into Editor Area")
},
moveToTerminalPanel: {
value: localize('workbench.action.terminal.moveToTerminalPanel', "Move Terminal into Panel"),
Expand Down

0 comments on commit 55c8ba9

Please sign in to comment.