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() {
1654
1654
1655
1655
registerActiveInstanceAction ( {
1656
1656
id : TerminalCommandId . StartVoice ,
1657
- title : localize2 ( 'workbench.action.startTerminalVoice ' , "Start Terminal Voice" ) ,
1657
+ title : localize2 ( 'workbench.action.terminal.startVoice ' , "Start Terminal Voice" ) ,
1658
1658
precondition : ContextKeyExpr . and ( HasSpeechProvider , sharedWhenClause . terminalAvailable ) ,
1659
1659
f1 : true ,
1660
1660
run : ( activeInstance , c , accessor ) => {
@@ -1665,7 +1665,7 @@ export function registerTerminalActions() {
1665
1665
1666
1666
registerActiveInstanceAction ( {
1667
1667
id : TerminalCommandId . StopVoice ,
1668
- title : localize2 ( 'workbench.action.stopTerminalVoice ' , "Stop Terminal Voice" ) ,
1668
+ title : localize2 ( 'workbench.action.terminal.stopVoice ' , "Stop Terminal Voice" ) ,
1669
1669
precondition : ContextKeyExpr . and ( HasSpeechProvider , sharedWhenClause . terminalAvailable ) ,
1670
1670
f1 : true ,
1671
1671
run : ( activeInstance , c , accessor ) => {
Original file line number Diff line number Diff line change @@ -495,8 +495,8 @@ export const enum TerminalCommandId {
495
495
FocusHover = 'workbench.action.terminal.focusHover' ,
496
496
ShowEnvironmentContributions = 'workbench.action.terminal.showEnvironmentContributions' ,
497
497
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 ' ,
500
500
FontZoomIn = 'workbench.action.terminal.fontZoomIn' ,
501
501
FontZoomOut = 'workbench.action.terminal.fontZoomOut' ,
502
502
FontZoomReset = 'workbench.action.terminal.fontZoomReset' ,
You can’t perform that action at this time.
0 commit comments