File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
src/vs/workbench/contrib/terminal Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -1654,7 +1654,7 @@ export function registerTerminalActions() {
16541654
16551655 registerActiveInstanceAction ( {
16561656 id : TerminalCommandId . StartVoice ,
1657- title : localize2 ( 'workbench.action.startTerminalVoice ' , "Start Terminal Voice" ) ,
1657+ title : localize2 ( 'workbench.action.terminal.startVoice ' , "Start Terminal Voice" ) ,
16581658 precondition : ContextKeyExpr . and ( HasSpeechProvider , sharedWhenClause . terminalAvailable ) ,
16591659 f1 : true ,
16601660 run : ( activeInstance , c , accessor ) => {
@@ -1665,7 +1665,7 @@ export function registerTerminalActions() {
16651665
16661666 registerActiveInstanceAction ( {
16671667 id : TerminalCommandId . StopVoice ,
1668- title : localize2 ( 'workbench.action.stopTerminalVoice ' , "Stop Terminal Voice" ) ,
1668+ title : localize2 ( 'workbench.action.terminal.stopVoice ' , "Stop Terminal Voice" ) ,
16691669 precondition : ContextKeyExpr . and ( HasSpeechProvider , sharedWhenClause . terminalAvailable ) ,
16701670 f1 : true ,
16711671 run : ( activeInstance , c , accessor ) => {
Original file line number Diff line number Diff line change @@ -495,8 +495,8 @@ export const enum TerminalCommandId {
495495 FocusHover = 'workbench.action.terminal.focusHover' ,
496496 ShowEnvironmentContributions = 'workbench.action.terminal.showEnvironmentContributions' ,
497497 ToggleStickyScroll = 'workbench.action.terminal.toggleStickyScroll' ,
498- StartVoice = 'workbench.action.startTerminalVoice ' ,
499- StopVoice = 'workbench.action.stopTerminalVoice ' ,
498+ StartVoice = 'workbench.action.terminal.startVoice ' ,
499+ StopVoice = 'workbench.action.terminal.stopVoice ' ,
500500 FontZoomIn = 'workbench.action.terminal.fontZoomIn' ,
501501 FontZoomOut = 'workbench.action.terminal.fontZoomOut' ,
502502 FontZoomReset = 'workbench.action.terminal.fontZoomReset' ,
You can’t perform that action at this time.
0 commit comments