Skip to content

Commit

Permalink
Fix label caps
Browse files Browse the repository at this point in the history
  • Loading branch information
roblourens committed Nov 16, 2023
1 parent eca3d31 commit 696572d
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/vs/workbench/contrib/chat/browser/actions/chatMoveActions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ enum MoveToNewLocation {
const getMoveToChatActionDescriptorForViewTitle = (viewId: string, providerId: string, moveTo: MoveToNewLocation): Readonly<IAction2Options> & { viewId: string } => ({
id: `workbench.action.chat.${providerId}.openIn${moveTo}`,
title: {
value: moveTo === MoveToNewLocation.Editor ? localize('chat.openInEditor.label', "Open Session In Editor") : localize('chat.openInNewWindow.label', "Open Session In New Window"),
original: moveTo === MoveToNewLocation.Editor ? 'Open Session In Editor' : 'Open Session In New Window',
value: moveTo === MoveToNewLocation.Editor ? localize('chat.openInEditor.label', "Open Session in Editor") : localize('chat.openInNewWindow.label', "Open Session in New Window"),
original: moveTo === MoveToNewLocation.Editor ? 'Open Session in Editor' : 'Open Session in New Window',
},
category: CHAT_CATEGORY,
precondition: CONTEXT_PROVIDER_EXISTS,
Expand Down Expand Up @@ -92,8 +92,8 @@ export function registerMoveActions() {
super({
id: `workbench.action.chat.openInEditor`,
title: {
value: localize('interactiveSession.openInEditor.label', "Open Session In Editor"),
original: 'Open Session In Editor'
value: localize('interactiveSession.openInEditor.label', "Open Session in Editor"),
original: 'Open Session in Editor'
},
category: CHAT_CATEGORY,
precondition: CONTEXT_PROVIDER_EXISTS,
Expand All @@ -112,7 +112,7 @@ export function registerMoveActions() {
super({
id: `workbench.action.chat.openInNewWindow`,
title: {
value: localize('interactiveSession.openInNewWindow.label', "Open Session In New Window"),
value: localize('interactiveSession.openInNewWindow.label', "Open Session in New Window"),
original: 'Open Session In New Window'
},
category: CHAT_CATEGORY,
Expand All @@ -131,8 +131,8 @@ export function registerMoveActions() {
super({
id: `workbench.action.chat.openInSidebar`,
title: {
value: localize('interactiveSession.openInSidebar.label', "Open Session In Sidebar"),
original: 'Open Session In Sidebar'
value: localize('interactiveSession.openInSidebar.label', "Open Session in Side Bar"),
original: 'Open Session in Side Bar'
},
category: CHAT_CATEGORY,
precondition: CONTEXT_PROVIDER_EXISTS,
Expand Down

0 comments on commit 696572d

Please sign in to comment.