mirror of
https://github.com/microsoft/vscode.git
synced 2026-07-08 07:44:33 +01:00
part of #134907
This commit is contained in:
@@ -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
|
||||
@@ -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
|
||||
@@ -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());
|
||||
}
|
||||
|
||||
|
||||
@@ -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"),
|
||||
|
||||
Reference in New Issue
Block a user