Create -> Create New

Fixes #130851
This commit is contained in:
Daniel Imms 2021-08-19 07:26:23 -07:00
parent dd2ba7365e
commit 12a69fc0f4

View file

@ -112,7 +112,7 @@ export function registerTerminalActions() {
constructor() {
super({
id: TerminalCommandId.NewInActiveWorkspace,
title: { value: localize('workbench.action.terminal.newInActiveWorkspace', "Create Terminal (In Active Workspace)"), original: 'Create Terminal (In Active Workspace)' },
title: { value: localize('workbench.action.terminal.newInActiveWorkspace', "Create New Terminal (In Active Workspace)"), original: 'Create New Terminal (In Active Workspace)' },
f1: true,
category,
precondition: TerminalContextKeys.processSupported
@ -139,7 +139,7 @@ export function registerTerminalActions() {
constructor() {
super({
id: TerminalCommandId.CreateTerminalEditor,
title: { value: localize('workbench.action.terminal.createTerminalEditor', "Create Terminal in Editor Area"), original: 'Create Terminal in Editor Area' },
title: { value: localize('workbench.action.terminal.createTerminalEditor', "Create New Terminal in Editor Area"), original: 'Create New Terminal in Editor Area' },
f1: true,
category,
precondition: TerminalContextKeys.processSupported
@ -158,7 +158,7 @@ export function registerTerminalActions() {
constructor() {
super({
id: TerminalCommandId.CreateTerminalEditorSide,
title: { value: localize('workbench.action.terminal.createTerminalEditorSide', "Create Terminal in Editor Area to the Side"), original: 'Create Terminal in Editor Area to the Side' },
title: { value: localize('workbench.action.terminal.createTerminalEditorSide', "Create New Terminal in Editor Area to the Side"), original: 'Create New Terminal in Editor Area to the Side' },
f1: true,
category,
precondition: TerminalContextKeys.processSupported
@ -1137,10 +1137,10 @@ export function registerTerminalActions() {
});
registerAction2(class extends Action2 {
constructor() {
const title = localize('workbench.action.terminal.newWithCwd', "Create Terminal Starting in a Custom Working Directory");
const title = localize('workbench.action.terminal.newWithCwd', "Create New Terminal Starting in a Custom Working Directory");
super({
id: TerminalCommandId.NewWithCwd,
title: { value: title, original: 'Create Terminal Starting in a Custom Working Directory' },
title: { value: title, original: 'Create New Terminal Starting in a Custom Working Directory' },
category,
description: {
description: title,
@ -1582,7 +1582,7 @@ export function registerTerminalActions() {
constructor() {
super({
id: TerminalCommandId.New,
title: { value: localize('workbench.action.terminal.new', "Create Terminal"), original: 'Create Terminal' },
title: { value: localize('workbench.action.terminal.new', "Create New Terminal"), original: 'Create New Terminal' },
f1: true,
category,
precondition: TerminalContextKeys.processSupported,
@ -1979,7 +1979,7 @@ export function refreshTerminalActions(detectedProfiles: ITerminalProfile[]) {
constructor() {
super({
id: TerminalCommandId.NewWithProfile,
title: { value: localize('workbench.action.terminal.newWithProfile', "Create Terminal (With Profile)"), original: 'Create Terminal (With Profile)' },
title: { value: localize('workbench.action.terminal.newWithProfile', "Create New Terminal (With Profile)"), original: 'Create New Terminal (With Profile)' },
f1: true,
category,
precondition: TerminalContextKeys.processSupported,