Skip to content

Commit b34be2a

Browse files
committed
Fix casing of other find commands
Fixes microsoft#96421
1 parent e91637a commit b34be2a

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1159,7 +1159,7 @@ export function registerTerminalActions() {
11591159
constructor() {
11601160
super({
11611161
id: TERMINAL_COMMAND_ID.TOGGLE_FIND_REGEX,
1162-
title: localize('workbench.action.terminal.toggleFindRegex', "Toggle find using regex"),
1162+
title: localize('workbench.action.terminal.toggleFindRegex', "Toggle Find Using Regex"),
11631163
f1: true,
11641164
category,
11651165
keybinding: {
@@ -1179,7 +1179,7 @@ export function registerTerminalActions() {
11791179
constructor() {
11801180
super({
11811181
id: TERMINAL_COMMAND_ID.TOGGLE_FIND_WHOLE_WORD,
1182-
title: localize('workbench.action.terminal.toggleFindWholeWord', "Toggle find using whole word"),
1182+
title: localize('workbench.action.terminal.toggleFindWholeWord', "Toggle Find Using Whole Word"),
11831183
f1: true,
11841184
category,
11851185
keybinding: {
@@ -1199,7 +1199,7 @@ export function registerTerminalActions() {
11991199
constructor() {
12001200
super({
12011201
id: TERMINAL_COMMAND_ID.TOGGLE_FIND_CASE_SENSITIVE,
1202-
title: localize('workbench.action.terminal.toggleFindCaseSensitive', "Toggle find using case sensitive"),
1202+
title: localize('workbench.action.terminal.toggleFindCaseSensitive', "Toggle Find Using Case Sensitive"),
12031203
f1: true,
12041204
category,
12051205
keybinding: {

0 commit comments

Comments
 (0)